humhub/protected/components/HActiveRecordContentContainer.php
2014-04-02 13:11:08 +02:00

68 lines
1.6 KiB
PHP

<?php
/**
* HumHub
* Copyright © 2014 The HumHub Project
*
* The texts of the GNU Affero General Public License with an additional
* permission and of our proprietary license can be found at and
* in the LICENSE file you have received along with this program.
*
* According to our dual licensing model, this program can be used either
* under the terms of the GNU Affero General Public License, version 3,
* or under a proprietary license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*/
/**
*
* Required Attributes:
* - wall_id
* - guid
*
* Required Methods:
* - getProfileImage()
* - getUrl()
*
*/
class HActiveRecordContentContainer extends HActiveRecord implements IContentContainer {
/**
* Returns the Profile Image Object for this Content Base
*
* @return ProfileImage
*/
public function getProfileImage() {
if (get_class($this) == 'Space') {
return new ProfileImage($this->guid, 'default_space');
}
return new ProfileImage($this->guid);
}
/**
* Should be overwritten by implementation
*/
public function getUrl() {
return "";
}
/**
* Check write permissions on content container.
* Overwrite this with your own implementation.
*
* @param type $userId
* @return boolean
*/
public function canWrite($userId = "") {
return false;
}
}
?>