示例#1
0
 public function preHandle()
 {
     if (!method_exists($this, $this->callback)) {
         return;
     }
     $injector = call_user_func_array(array($this, $this->callback), $this->args);
     if ($injector) {
         $this->bp->appendDo($injector);
     }
 }