Ejemplo n.º 1
0
/**
 * Deprecated since 1.8
 * Use CGroupHelper::allowPhotoWall instead. 
 */
function cAllowPhotoWall($groupId)
{
    return CGroupHelper::allowPhotoWall($groupId);
}
Ejemplo n.º 2
0
 public function isWallsAllowed($photoId)
 {
     $photo = JTable::getInstance('Photo', 'CTable');
     $photo->load($photoId);
     $album = JTable::getInstance('Album', 'CTable');
     $album->load($photo->albumid);
     if (CGroupHelper::allowPhotoWall($album->groupid)) {
         return true;
     }
     return false;
 }
Ejemplo n.º 3
0
 public function isWallsAllowed($photoId)
 {
     CFactory::load('helpers', 'group');
     CFactory::load('models', 'photos');
     $photo =& JTable::getInstance('Photo', 'CTable');
     $photo->load($photoId);
     $album =& JTable::getInstance('Album', 'CTable');
     $album->load($photo->albumid);
     if (CGroupHelper::allowPhotoWall($album->groupid)) {
         return true;
     }
     return false;
 }