| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Dcat\Admin\Form\Field;
- use Dcat\Admin\Exception\AdminException;
- class Captcha extends Text
- {
- protected $rules = ['required', 'captcha'];
- protected $view = 'admin::form.captcha';
- public function __construct()
- {
- if (! class_exists(\Mews\Captcha\Captcha::class)) {
- throw new AdminException('To use captcha field, please install [mews/captcha] first.');
- }
- $this->column = '__captcha__';
- $this->label = trans('admin.captcha');
- }
- public function setForm($form = null)
- {
- parent::setForm($form);
- if (method_exists($this->form, 'ignore')) {
- $this->form->ignore($this->column);
- }
- return $this;
- }
- public function render()
- {
- $this->addVariables(['captchaSrc' => captcha_src()]);
- return parent::render();
- }
- }
|