Esempio n. 1
0
 /**
  * Checks if guest is loggedin for the album
  * @param unknown_type $hint
  * @param unknown_type $show
  */
 function checkforGuest(&$hint = NULL, &$show = NULL)
 {
     if (!parent::checkForGuest()) {
         return false;
     }
     return checkAlbumPassword($this, $hint);
 }
Esempio n. 2
0
 /**
  * Checks if guest is loggedin for the album
  * @param unknown_type $hint
  * @param unknown_type $show
  */
 function checkforGuest(&$hint = NULL, &$show = NULL)
 {
     if (!parent::checkForGuest()) {
         return false;
     }
     $album = $this->getAlbum();
     return $album->checkforGuest($hint, $show);
 }