コード例 #1
0
ファイル: member.entity.php プロジェクト: gpuenteallott/rox
 /**
  * Get number of gallery items
  *
  * @todo Cache count to save database queries
  * @return integer Number of items
  */
 public function getGalleryItemsCount()
 {
     $gallery = new GalleryModel();
     $count = $gallery->getUserItemCount($this->get_userid());
     return $count;
 }