2017 © Pedro Peláez
 

yii2-extension yii2-recaptcha

Yii2 Component-widget Google recaptcha

image

lg-xenos/yii2-recaptcha

Yii2 Component-widget Google recaptcha

  • Tuesday, January 16, 2018
  • by lgXenos
  • Repository
  • 1 Watchers
  • 0 Stars
  • 27 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

lgXenos/yii2-recaptcha

Yii2 Component-widget with Google Recaptcha. Ajaxed. Multipled. Fixed

composer require lg-xenos/yii2-recaptcha, (*1)

'components' => [
    'reCaptcha' => [
        'name' => 'reCaptcha',
        'class' => 'lgxenos\yii2\recaptcha\ReCaptcha',
        // Get reCAPTCHA API keys: https://www.google.com/recaptcha/admin#createsite
        'siteKey' => 'your siteKey',
        'secret' => 'your secret key',
    ],
    ...
  • Правила/rules для ActiveRecordModel / ActiveFormAdd:
public $reCaptcha;

public function rules()
{
  return [
      // ...
      [[], \lgxenos\yii2\recaptcha\ReCaptchaValidator::className(), 'uncheckedMessage' => 'Please confirm that you are not a bot.']
  ];
}
  • {view}.php
<?= $form->field($model, 'reCaptcha')->widget(\lgxenos\yii2\recaptcha\ReCaptcha::className()) ?>

Множественные рекапчи / Multiple reCaptcha on a one page

У каждой свой ID / Each of reCaptcha instances must have unique id, (*2)

= $form1->field($modelForm1, 'reCaptcha')
    ->widget(\lgxenos\yii2\recaptcha\ReCaptcha::className(), [
        'widgetOptions' => [
            'id' => 'form-ONE',
        ]
    ]) ?>

= $form2->field($modelForm2, 'reCaptcha')
    ->widget(\lgxenos\yii2\recaptcha\ReCaptcha::className(), [
        'widgetOptions' => [
            'id' => 'form-TWO',
        ]
    ]) ?>

Почитать / Resources

Немного истории / Some history

(in English below), (*5)

Предыстория такова, что himiklab сделал базу виджету для гугл-рекапчи. Но она не работала для аякса. Ему был предложен PR, но долго провалявшись с пометкой "conflicted" так и не был реализован., (*6)

Сейчас там есть другие issues, которые опять таки приводят предложения, как решить данную проблему. Но автор, к сожалению, ждет PR., (*7)

В одной из моих issue мне ответили: "Я тут кому-то что-то должен?". Конечно потом это было стерто. Но я получил email с этим сообщением., (*8)

Не очень уважаемый himiklab, ни в коем случае вы никому ничего не должны. Как и мы вам. Но на будущее, если у вас нет желания или времени заниматься поддержкой - это стоит указывать заранее. В прочем если в ответ на баги вы будете подсказывать, где искать проблему - вам только будет полезнее. А то, что вы мне ответили - это не ответ. Это слепая агрессия на окружающих. Удачи, (*9)

Данный код основан на труде himiklab и den67rus, после чего "по-русски доработан напильником"., (*10)

in English - I'm using only Google Translate, because not good know it, (*11)

The background is that himiklab made the widget base for google-recaptcha. But she did not work for Ajax. To him [was offered PR] (https://github.com/himiklab/yii2-recaptcha-widget/pull/23), but for a long time lying around with the mark "conflicted" was never realized., (*12)

Now there are other issues, which again lead to suggestions how to solve this problem. But the author, unfortunately, is waiting for PR., (*13)

In [one of my issue] (https://github.com/himiklab/yii2-recaptcha-widget/issues/57) He write to me: "I owe to someone?". Of course then it was erased. But I received an email with this message., (*14)

Of course not. But we not owe too. But wrote: Sorry I'm to busy, search bug at ... - the best practice. Use it., (*15)

Thnx himiklab & den67rus for base to this release, (*16)

The Versions

16/01 2018

dev-master

9999999-dev

Yii2 Component-widget Google recaptcha

  Sources   Download

The Requires

 

yii2 captcha google widget recaptcha

16/01 2018

v1.0.1

1.0.1.0

Yii2 Component-widget Google recaptcha

  Sources   Download

The Requires

 

yii2 captcha google widget recaptcha

29/12 2017

v1.0.0

1.0.0.0

Yii2 Component-widget Google recaptcha

  Sources   Download

The Requires

 

yii2 captcha google widget recaptcha