Ejemplo n.º 1
0
 /**
  * Counts photos in the album
  *
  * @param int $albumId
  * @param null $exclude
  * @return int
  */
 public function countAlbumPhotos($albumId, $exclude = null)
 {
     return $this->photoDao->countAlbumPhotos($albumId, $exclude);
 }
Ejemplo n.º 2
0
 public function countAlbumPhotos($id, $exclude)
 {
     return $this->photoDao->countAlbumPhotos($id, $exclude);
 }