Simplify functions regarding locally cached profiles etc.

This commit is contained in:
Mikael Nordfeldth
2014-06-06 00:32:07 +02:00
parent c786892103
commit c8c6bf9a1c
3 changed files with 20 additions and 36 deletions

View File

@@ -84,19 +84,15 @@ class User_group extends Managed_DataObject
public function getProfile()
{
if (!isset($this->_profile[$this->profile_id])) {
$this->_setProfile(Profile::getKV('id', $this->profile_id));
$profile = Profile::getKV('id', $this->profile_id);
if (!$profile instanceof Profile) {
throw new GroupNoProfileException($this);
}
$this->_profile[$this->profile_id] = $profile;
}
return $this->_profile[$this->profile_id];
}
public function _setProfile(Profile $profile=null)
{
if (!$profile instanceof Profile) {
throw new GroupNoProfileException($this);
}
$this->_profile[$this->profile_id] = $profile;
}
public static function defaultLogo($size)
{
static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',