예제 #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
 /**
  * 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);
 }