本文整理汇总了PHP中eZCollaborationItem::fetchList方法的典型用法代码示例。如果您正苦于以下问题:PHP eZCollaborationItem::fetchList方法的具体用法?PHP eZCollaborationItem::fetchList怎么用?PHP eZCollaborationItem::fetchList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZCollaborationItem
的用法示例。
在下文中一共展示了eZCollaborationItem::fetchList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fetchItemList
function fetchItemList($sortBy, $offset, $limit, $status, $isRead, $isActive, $parentGroupID)
{
$itemParameters = array('offset' => $offset, 'limit' => $limit, 'sort_by' => $sortBy, 'is_read' => $isRead, 'is_active' => $isActive, 'parent_group_id' => $parentGroupID);
if ($status !== false) {
$itemParameters['status'] = $status;
}
$children = eZCollaborationItem::fetchList($itemParameters);
if ($children === null) {
return array('error' => array('error_type' => 'kernel', 'error_code' => eZError::KERNEL_NOT_FOUND));
}
return array('result' => $children);
}
示例2: itemList
function itemList($parameters = array())
{
return eZCollaborationItem::fetchList(array_merge(array('parent_group_id' => $this->ID), $parameters));
}