Example #1
0
 /**
  * Removes an album from web page collection
  * 
  * @param string $albumId
  * @return boolean
  */
 private function removeWebPage($albumId)
 {
     $webPageId = $this->albumMapper->fetchWebPageIdById($albumId);
     return $this->webPageManager->deleteById($webPageId);
 }