PHP code example of macgyer / yii2-spamshield
1. Go to this page and download the library: Download macgyer/yii2-spamshield library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
macgyer / yii2-spamshield example snippets
// in your ActiveForm
<?= $form->field($model, 'yourProperty')->widget(\macgyer\yii2spamshield\SpamShield::class)
// in your Model
public function rules()
{
return [
// other rules
['yourProperty', \macgyer\yii2spamshield\SpamShieldValidator::class]
];
}