示例#1
0
 function fetchArchived($blockID)
 {
     $result = array('result' => eZFlowPool::archivedItems($blockID));
     return $result;
 }
 /**
  * Fetches archived items and do merge with those already available
  *
  * @return array(eZPageBlockItem)
  */
 protected function getArchivedItems()
 {
     $archivedItems = eZFlowPool::archivedItems( $this->id() );
     return $this->merge( $archivedItems );
 }