Ejemplo n.º 1
0
 public function getCustomVisningsbild($approved = true)
 {
     try {
         $customVisningsbild = CustomVisningsbild::loadByMedlem($this, $approved);
     } catch (CustomVisningsbildException $e) {
         if ($e->getCode() == -3) {
             unset($customVisningsbild);
         } else {
             throw $e;
         }
     }
     if (isset($customVisningsbild)) {
         return $customVisningsbild;
     } else {
         return false;
     }
 }