コード例 #1
0
 /**
  * Counts user albums
  *
  * @param $userId
  * @param null $exclude
  * @param bool $excludeEmpty
  * @internal param string $type
  * @return int
  */
 public function countUserAlbums($userId, $exclude = null, $excludeEmpty = false)
 {
     return $this->photoAlbumDao->countAlbums($userId, $exclude, $excludeEmpty);
 }
コード例 #2
0
ファイル: photo_album_service.php プロジェクト: vazahat/dudex
 /**
  * Counts user albums
  *
  * @param $userId
  * @param null $exclude
  * @internal param string $type
  * @return int
  */
 public function countUserAlbums($userId, $exclude = null)
 {
     return $this->photoAlbumDao->countAlbums($userId, $exclude);
 }