Beispiel #1
0
 function getAvatar($width, $height = null)
 {
     if (is_null($height)) {
         $height = $width;
     }
     return Avatar::pkeyGet(array('profile_id' => $this->id, 'width' => $width, 'height' => $height));
 }
Beispiel #2
0
 function getAvatar($width, $height = null)
 {
     if (is_null($height)) {
         $height = $width;
     }
     $avatar = null;
     if (Event::handle('StartProfileGetAvatar', array($this, $width, &$avatar))) {
         $avatar = Avatar::pkeyGet(array('profile_id' => $this->id, 'width' => $width, 'height' => $height));
         Event::handle('EndProfileGetAvatar', array($this, $width, &$avatar));
     }
     return $avatar;
 }