Beispiel #1
0
 public function loadHandler()
 {
     if (!$this->checkAccessibleScope()) {
         return $this->deny();
     }
     $n = $this->getName();
     if ($n) {
         $md = Bella::loadHandler($n);
         if (!!$md && is_object($md)) {
             $md->setName($n);
             return $md;
         }
     }
     return $this->deny();
 }