mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-02-12 18:11:52 +00:00
27 lines
No EOL
733 B
PHP
27 lines
No EOL
733 B
PHP
<?php
|
|
namespace app\models;
|
|
|
|
class ContactForm extends \yii\base\Model {
|
|
|
|
public $email;
|
|
public $message;
|
|
|
|
public $reCaptcha;
|
|
|
|
public function rules() {
|
|
return [
|
|
["email", "email"],
|
|
["message", "safe"],
|
|
[["email", "message"], "required"],
|
|
[['reCaptcha'], \himiklab\yii2\recaptcha\ReCaptchaValidator::className(), 'secret' => '6LdpNCMUAAAAABTYWw_Eaca7iGlbXaCWWe0fqqp7', 'uncheckedMessage' => 'Пожалуйста, подтвержите, что вы не бот!']
|
|
];
|
|
}
|
|
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
"email" => "Ваш E-mail адреса",
|
|
"message" => "Сообщение"
|
|
];
|
|
}
|
|
} |