Beispiel #1
0
 public function __call($nm, $args)
 {
     if (!isset($this->controller)) {
         $captcha = \Concrete\Core\Captcha\Library::getActive();
         $this->controller = $captcha->getController();
     }
     if (method_exists($this->controller, $nm)) {
         return call_user_func_array(array($this->controller, $nm), $args);
     }
 }
Beispiel #2
0
 public function view()
 {
     $list = SystemCaptchaLibrary::getList();
     $captchas = array();
     foreach ($list as $sc) {
         $captchas[$sc->getSystemCaptchaLibraryHandle()] = $sc->getSystemCaptchaLibraryName();
     }
     $scl = SystemCaptchaLibrary::getActive();
     $this->set('activeCaptcha', $scl);
     $this->set('captchas', $captchas);
 }