| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Dcat\Admin\Form\Field;
- 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 \Exception('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->script = <<<'JS'
- $('.field-refresh-captcha').off('click').on('click', function () {
- $(this).attr('src', $(this).attr('data-url')+'?'+Math.random());
- });
- JS;
- $this->addVariables(['captchaSrc' => captcha_src()]);
- return parent::render();
- }
- }
|