public function captchaAction()
 {
     $this->setNoRender();
     $admin_service = new AdminService();
     $captcha = $admin_service->getCaptcha();
     return $this->showJson(0, array('captcha' => $captcha));
 }