Exemplo n.º 1
0
 public function delete()
 {
     $settings = Vars::getSettings();
     // we delete avatar image first
     if ($this->getThumbnail() != $settings['profile']['avatar_default']) {
         @unlink(AVATAR_DIR . '/' . $this->getThumbnail());
     }
     parent::delete();
 }
Exemplo n.º 2
0
 public function delete()
 {
     // we delete avatar image first
     @unlink(AVATAR_DIR . '/' . $this->getThumbnail());
     parent::delete();
 }