{"id":4935,"date":"2021-08-09T07:17:55","date_gmt":"2021-08-09T07:17:55","guid":{"rendered":"https:\/\/www.bearloga.space\/?page_id=4935"},"modified":"2021-08-09T07:17:55","modified_gmt":"2021-08-09T07:17:55","slug":"yii-modeli","status":"publish","type":"page","link":"https:\/\/www.bearloga.space\/uk\/yii-modeli\/","title":{"rendered":"Yii \u2014 \u041c\u043e\u0434\u0435\u043b\u0438"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u041c\u043e\u0434\u0435\u043b\u0438 \u2014 \u044d\u0442\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u044b, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043b\u043e\u0433\u0438\u043a\u0443 \u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430.&nbsp;\u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441&nbsp;<strong>yii \\ base \\ Model<\/strong>&nbsp;\u0438\u043b\u0438 \u0435\u0433\u043e \u043f\u043e\u0434\u043a\u043b\u0430\u0441\u0441\u044b.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u0434\u0430\u043d\u043d\u044b\u0435.&nbsp;\u041e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u0430\u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043c\u0430\u0441\u0441\u0438\u0432\u0430 \u0438\u043b\u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430.&nbsp;\u041a\u0430\u0436\u0434\u044b\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e\u043c \u043c\u043e\u0434\u0435\u043b\u0438.&nbsp;\u0427\u0442\u043e\u0431\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c, \u043a\u0430\u043a\u0438\u043c\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438 \u043e\u0431\u043b\u0430\u0434\u0430\u0435\u0442 \u043c\u043e\u0434\u0435\u043b\u044c, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u043c\u0435\u0442\u043e\u0434&nbsp;<strong>yii \\ base \\ Model :: attribute ()<\/strong>&nbsp;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u0414\u0430\u0432\u0430\u0439\u0442\u0435 \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u043c \u043d\u0430 \u043c\u043e\u0434\u0435\u043b\u044c&nbsp;<strong>ContactForm<\/strong>&nbsp;\u0431\u0430\u0437\u043e\u0432\u043e\u0433\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n   namespace app\\models;\n   use Yii;\n   use yii\\base\\Model;\n   \/**\n   * ContactForm is the model behind the contact form.\n   *\/\n   class ContactForm extends Model {\n      public $name;\n      public $email;\n      public $subject;\n      public $body;\n      public $verifyCode;\n      \/**\n      * @return array the validation rules.\n      *\/\n      public function rules() {\n         return [\n            \/\/ name, email, subject and body are required\n            [['name', 'email', 'subject', 'body'], 'required'],\n            \/\/ email has to be a valid email address\n            ['email', 'email'],\n            \/\/ verifyCode needs to be entered correctly\n            ['verifyCode', 'captcha'],\n         ];\n      }\n      \/**\n      * @return array customized attribute labels\n      *\/\n      public function attributeLabels() {\n         return [\n            'verifyCode' =&gt; 'Verification Code',\n         ];\n      }\n      \/**\n      * Sends an email to the specified email address using the information \n         collected by this model.\n      * @param  string  $email the target email address\n      * @return boolean whether the model passes validation\n      *\/\n      public function contact($email) {\n         if ($this-&gt;validate()) {\n            Yii::$app-&gt;mailer-&gt;compose()\n               -&gt;setTo($email)\n               -&gt;setFrom([$this-&gt;email =&gt; $this-&gt;name])\n               -&gt;setSubject($this-&gt;subject)\n               -&gt;setTextBody($this-&gt;body)\n               -&gt;send();\n            return true;\n         }\n         return false;\n      }\n   }\n?&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 1<\/strong>&nbsp;\u2014 \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044e \u0441 \u0438\u043c\u0435\u043d\u0435\u043c&nbsp;<strong>actionShowContactModel<\/strong>&nbsp;\u0432&nbsp;<strong>SiteController<\/strong>&nbsp;\u0441\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043a\u043e\u0434\u043e\u043c.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function actionShowContactModel() { \n   $mContactForm = new \\app\\models\\ContactForm(); \n   $mContactForm-&gt;name = \"contactForm\"; \n   $mContactForm-&gt;email = \"user@gmail.com\"; \n   $mContactForm-&gt;subject = \"subject\"; \n   $mContactForm-&gt;body = \"body\"; \n   var_dump($mContactForm); \n}<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412 \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u043e\u043c \u0432\u044b\u0448\u0435 \u043a\u043e\u0434\u0435 \u043c\u044b \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c \u043c\u043e\u0434\u0435\u043b\u044c&nbsp;<strong>ContactForm<\/strong>&nbsp;, \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c \u043c\u043e\u0434\u0435\u043b\u044c \u043d\u0430 \u044d\u043a\u0440\u0430\u043d\u0435.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 2.<\/strong>&nbsp;\u0422\u0435\u043f\u0435\u0440\u044c, \u0435\u0441\u043b\u0438 \u0432\u044b \u0432\u0432\u0435\u0434\u0435\u0442\u0435&nbsp;<strong>http: \/\/ localhost: 8080 \/ index.php? R = site \/ show-contact-model<\/strong>&nbsp;\u0432 \u0430\u0434\u0440\u0435\u0441\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0435 \u0432\u0435\u0431-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430, \u0432\u044b \u0443\u0432\u0438\u0434\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/show_contact_view.png\" alt=\"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u044b\u0439 \u0432\u0438\u0434\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0430 \u043c\u043e\u0434\u0435\u043b\u044c \u0432\u044b\u0445\u043e\u0434\u0438\u0442 \u0438\u0437&nbsp;<strong>yii \\ base \\ Model<\/strong>&nbsp;, \u0442\u043e \u0432\u0441\u0435 \u0435\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435-\u0447\u043b\u0435\u043d\u044b (\u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435 \u0438 \u043d\u0435\u0441\u0442\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435) \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438.&nbsp;\u0412 \u043c\u043e\u0434\u0435\u043b\u0438&nbsp;<strong>ContactForm<\/strong>&nbsp;\u0435\u0441\u0442\u044c \u043f\u044f\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u2014 \u0438\u043c\u044f, \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0442\u0435\u043c\u0430, \u0442\u0435\u043b\u043e,&nbsp;<strong>verifyCode,<\/strong>&nbsp;\u0438 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043b\u0435\u0433\u043a\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u043d\u043e\u0432\u044b\u0435.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u041c\u0435\u0442\u043a\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u0430\u043c \u0447\u0430\u0441\u0442\u043e \u043d\u0443\u0436\u043d\u043e \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043c\u0435\u0442\u043a\u0438, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0441 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438.&nbsp;\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u043c\u0435\u0442\u043a\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043c\u0435\u0442\u043e\u0434\u043e\u043c&nbsp;<strong>yii \\ base \\ Model :: generateAttributeLabel ()<\/strong>&nbsp;.&nbsp;\u0427\u0442\u043e\u0431\u044b \u0432\u0440\u0443\u0447\u043d\u0443\u044e \u043e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u043c\u0435\u0442\u043e\u0434&nbsp;<strong>yii \\ base \\ Model :: attributeLabels ()<\/strong>&nbsp;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 1<\/strong>&nbsp;\u2014 \u0415\u0441\u043b\u0438 \u0432\u044b \u043e\u0442\u043a\u0440\u043e\u0435\u0442\u0435&nbsp;<strong>http: \/\/ localhost: 8080 \/ index.php? R = site \/ contact,<\/strong>&nbsp;\u0432\u044b \u0443\u0432\u0438\u0434\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/contact_form-2.png\" alt=\"\u0424\u043e\u0440\u043c\u0430 \u043e\u0431\u0440\u0430\u0442\u043d\u043e\u0439 \u0441\u0432\u044f\u0437\u0438\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u043c\u0435\u0442\u043a\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0442 \u0441 \u0438\u0445 \u0438\u043c\u0435\u043d\u0430\u043c\u0438.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 2<\/strong>&nbsp;\u2014 \u0422\u0435\u043f\u0435\u0440\u044c \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044e&nbsp;<strong>attributeLabels \u0432<\/strong>&nbsp;\u043c\u043e\u0434\u0435\u043b\u0438&nbsp;<strong>ContactForm<\/strong>&nbsp;\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function attributeLabels() {\n   return [\n      'name' =&gt; 'name overridden',\n      'email' =&gt; 'email overridden',\n      'subject' =&gt; 'subject overridden',\n      'body' =&gt; 'body overridden',\n      'verifyCode' =&gt; 'verifyCode overridden',\n   ];\n}<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 3.<\/strong>\u00a0\u0415\u0441\u043b\u0438 \u0432\u044b \u0441\u043d\u043e\u0432\u0430 \u043e\u0442\u043a\u0440\u043e\u0435\u0442\u0435\u00a0<strong>http: \/\/ localhost: 8080 \/ index.php? R = site \/ contact<\/strong>\u00a0, \u0432\u044b \u0437\u0430\u043c\u0435\u0442\u0438\u0442\u0435, \u0447\u0442\u043e \u043c\u0435\u0442\u043a\u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0438\u0441\u044c, \u043a\u0430\u043a \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u043d\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u043c \u0440\u0438\u0441\u0443\u043d\u043a\u0435.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/contact_form_changed.png\" alt=\"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c \u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f\u0445.&nbsp;\u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043a\u043e\u0433\u0434\u0430 \u0433\u043e\u0441\u0442\u044c \u0445\u043e\u0447\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0443\u044e \u0444\u043e\u0440\u043c\u0443, \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u044b \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043c\u043e\u0434\u0435\u043b\u0438.&nbsp;\u041a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0445\u043e\u0447\u0435\u0442 \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0442\u043e \u0436\u0435 \u0441\u0430\u043c\u043e\u0435, \u043e\u043d \u0443\u0436\u0435 \u0432\u043e\u0448\u0435\u043b \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0435\u0433\u043e \u0438\u043c\u044f, \u0442\u0430\u043a \u043a\u0430\u043a \u043c\u044b \u043c\u043e\u0436\u0435\u043c \u043b\u0435\u0433\u043a\u043e \u0432\u0437\u044f\u0442\u044c \u0435\u0433\u043e \u0438\u0437 \u0411\u0414.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u0427\u0442\u043e\u0431\u044b \u043e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438, \u043c\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0444\u0443\u043d\u043a\u0446\u0438\u044e&nbsp;<strong>scenarios ()<\/strong>&nbsp;.&nbsp;\u041e\u043d \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 \u043c\u0430\u0441\u0441\u0438\u0432, \u043a\u043b\u044e\u0447\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0438\u043c\u0435\u043d\u0430\u043c\u0438 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432, \u0430 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f&nbsp;<strong>\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438<\/strong>&nbsp;.&nbsp;\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u2014 \u044d\u0442\u043e \u0442\u0435, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0443\u0436\u043d\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c.&nbsp;\u041e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c&nbsp;<strong>\u043c\u0430\u0441\u0441\u043e\u0432\u043e \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u044b<\/strong>&nbsp;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 1<\/strong>&nbsp;\u2014 \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u043c\u043e\u0434\u0435\u043b\u044c&nbsp;<strong>ContactForm<\/strong>&nbsp;\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n   namespace app\\models;\n   use Yii;\n   use yii\\base\\Model;\n   \/**\n   * ContactForm is the model behind the contact form.\n   *\/\n   class ContactForm extends Model {\n      public $name;\n      public $email;\n      public $subject;\n      public $body;\n      public $verifyCode;\n      const SCENARIO_EMAIL_FROM_GUEST = 'EMAIL_FROM_GUEST';\n      const SCENARIO_EMAIL_FROM_USER = 'EMAIL_FROM_USER';\n      public function scenarios() {\n         return [\n            self::SCENARIO_EMAIL_FROM_GUEST =&gt; ['name', 'email', 'subject', \n               'body', 'verifyCode'],\n            self::SCENARIO_EMAIL_FROM_USER =&gt; ['email' ,'subject', 'body', \n               'verifyCode'],\n         ];\n      }\n      \/**\n      * @return array the validation rules.\n      *\/\n      public function rules() {\n         return [\n            \/\/ name, email, subject and body are required\n            [['name', 'email', 'subject', 'body'], 'required'],\n            \/\/ email has to be a valid email address\n            ['email', 'email'],\n            \/\/ verifyCode needs to be entered correctly\n            ['verifyCode', 'captcha'],\n         ];\n      }\n      \/**\n      * @return array customized attribute labels\n      *\/\n      public function attributeLabels() {\n         return [\n            'name' =&gt; 'name overridden',\n            'email' =&gt; 'email overridden',\n            'subject' =&gt; 'subject overridden',\n            'body' =&gt; 'body overridden',\n            'verifyCode' =&gt; 'verifyCode overridden',\n         ];\n      }\n      \/**\n      * Sends an email to the specified email address using the information \n         collected by this model.\n      * @param  string  $email the target email address\n      * @return boolean whether the model passes validation\n      *\/\n      public function contact($email) {\n         if ($this -&gt; validate()) {\n            Yii::$app-&gt;mailer-&gt;compose()\n               -&gt;setTo($email)\n               -&gt;setFrom([$this-&gt;email =&gt; $this-&gt;name]) \n               -&gt;setSubject($this-&gt;subject) \n               -&gt;setTextBody($this-&gt;body)\n               -&gt;send();\n            return true;\n         }\n         return false;\n      }\n   }\n?&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u041c\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u043b\u0438 \u0434\u0432\u0430 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f.&nbsp;\u041e\u0434\u0438\u043d \u0434\u043b\u044f \u0433\u043e\u0441\u0442\u044f, \u0434\u0440\u0443\u0433\u043e\u0439 \u0434\u043b\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.&nbsp;\u041a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043f\u0440\u043e\u0445\u043e\u0434\u0438\u0442 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e, \u043d\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0435\u0433\u043e \u0438\u043c\u044f.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 2<\/strong>&nbsp;\u2014 \u0422\u0435\u043f\u0435\u0440\u044c \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044e&nbsp;<strong>actionContact SiteController<\/strong>&nbsp;.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function actionContact() {\n   $model = new ContactForm();\n   $model-&gt;scenario = ContactForm::SCENARIO_EMAIL_FROM_GUEST;\n   if ($model-&gt;load(Yii::$app-&gt;request-&gt;post()) &amp;&amp; $model-&gt;\n      contact(Yii::$app-&gt;params ['adminEmail'])) {\n         Yii::$app-&gt;session-&gt;setFlash('contactFormSubmitted');  \n         return $this-&gt;refresh();\n   }\n   return $this-&gt;render('contact', [\n      'model' =&gt; $model,\n   ]);\n}<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 3<\/strong>&nbsp;\u2014 \u0412\u0432\u0435\u0434\u0438\u0442\u0435&nbsp;<strong>http: \/\/ localhost: 8080 \/ index.php? R = site \/ contact<\/strong>&nbsp;\u0432 \u0432\u0435\u0431-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.&nbsp;\u0412\u044b \u0437\u0430\u043c\u0435\u0442\u0438\u0442\u0435, \u0447\u0442\u043e \u0432 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043c\u043e\u0434\u0435\u043b\u0438.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/required_model_attributes.png\" alt=\"\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043c\u043e\u0434\u0435\u043b\u0438\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0428\u0430\u0433 4.<\/strong>&nbsp;\u0415\u0441\u043b\u0438 \u0432\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 \u0432&nbsp;<strong>actionContact<\/strong>&nbsp;, \u043a\u0430\u043a \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u043c \u043a\u043e\u0434\u0435, \u0432\u044b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0442\u0435, \u0447\u0442\u043e \u0430\u0442\u0440\u0438\u0431\u0443\u0442 name \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$model-&gt;scenario = ContactForm::SCENARIO_EMAIL_FROM_USER;\n<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/change_scenario.png\" alt=\"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Massive Assignment<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u041c\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0435 \u043f\u0440\u0438\u0441\u0432\u0430\u0438\u0432\u0430\u043d\u0438\u0435 \u2014 \u044d\u0442\u043e \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0441\u043f\u043e\u0441\u043e\u0431 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043c\u043e\u0434\u0435\u043b\u0438 \u0438\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0432\u0445\u043e\u0434\u043d\u044b\u0445 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 \u043a\u043e\u0434\u0430.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u0421\u0442\u0440\u043e\u043a\u0438 \u043a\u043e\u0434\u0430 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$mContactForm = new \\app\\models\\ContactForm; \n$mContactForm-&gt;attributes = \\Yii::$app-&gt;request-&gt;post('ContactForm');<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u044b\u0448\u0435\u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u043e\u043a\u0438 \u043a\u043e\u0434\u0430 \u044d\u043a\u0432\u0438\u0432\u0430\u043b\u0435\u043d\u0442\u043d\u044b \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$mContactForm = new \\app\\models\\ContactForm; \n$postData = \\Yii::$app-&gt;request-&gt;post('ContactForm', []); \n$mContactForm-&gt;name = isset($postData['name']) ? $postData['name'] : null; \n$mContactForm-&gt;email = isset($postData['email']) ? $postData['email'] : null; \n$mContactForm-&gt;subject = isset($postData['subject']) ? $postData['subject'] : null; \n$mContactForm-&gt;body = isset($postData['body']) ? $postData['body'] : null;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u041f\u0435\u0440\u0432\u044b\u0439 \u043d\u0430\u043c\u043d\u043e\u0433\u043e \u0447\u0438\u0449\u0435.&nbsp;\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e&nbsp;<strong>\u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435<\/strong>&nbsp;\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043a&nbsp;<strong>\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u043c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c<\/strong>&nbsp;.&nbsp;\u042d\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u043e \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f, \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0435 \u0432 \u0444\u0443\u043d\u043a\u0446\u0438\u0438&nbsp;<strong>scene ()<\/strong>&nbsp;.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u041c\u043e\u0434\u0435\u043b\u0438 \u0447\u0430\u0441\u0442\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u0442\u0430\u0445.&nbsp;\u0427\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c \u0432 \u043c\u0430\u0441\u0441\u0438\u0432, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044e&nbsp;<strong>actionShowContactModel<\/strong>&nbsp;\u0432&nbsp;<strong>SiteController<\/strong>&nbsp;\u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function actionShowContactModel() {\n   $mContactForm = new \\app\\models\\ContactForm();\n   $mContactForm-&gt;name = \"contactForm\";\n   $mContactForm-&gt;email = \"user@gmail.com\";\n   $mContactForm-&gt;subject = \"subject\";\n   $mContactForm-&gt;body = \"body\";\n   var_dump($mContactForm-&gt;attributes);\n} <\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u0432\u0435\u0434\u0438\u0442\u0435&nbsp;<strong>http: \/\/ localhost: 8080 \/ index.php? R = site \/ show-contact-model<\/strong>&nbsp;\u0432 \u0430\u0434\u0440\u0435\u0441\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0435, \u0438 \u0432\u044b \u0443\u0432\u0438\u0434\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u2014<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/data_export.png\" alt=\"\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u0427\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c \u0432 \u0444\u043e\u0440\u043c\u0430\u0442&nbsp;<strong>JSON<\/strong>&nbsp;, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044e&nbsp;<strong>actionShowContactModel<\/strong>&nbsp;\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function actionShowContactModel() {\n   $mContactForm = new \\app\\models\\ContactForm();\n   $mContactForm-&gt;name = \"contactForm\";\n   $mContactForm-&gt;email = \"user@gmail.com\";\n   $mContactForm-&gt;subject = \"subject\";\n   $mContactForm-&gt;body = \"body\";\n   return \\yii\\helpers\\Json::encode($mContactForm);\n}<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u0412\u044b\u0432\u043e\u0434 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430<\/strong>&nbsp;\u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n   \"name\":\"contactForm\",\n   \"email\":\"user@gmail.com\",\n   \"subject\":\"subject\",\n   \"body\":\"body \",\n   \"verifyCode\":null\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u041c\u043e\u0434\u0435\u043b\u0438 \u2014 \u044d\u0442\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u044b, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043b\u043e\u0433\u0438\u043a\u0443 \u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430.&nbsp;\u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043c\u043e\u0434\u0435\u043b\u044c, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441&nbsp;yii \\ base \\ Model&nbsp;\u0438\u043b\u0438 \u0435\u0433\u043e \u043f\u043e\u0434\u043a\u043b\u0430\u0441\u0441\u044b. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[156],"tags":[],"class_list":["post-4935","page","type-page","status-publish","hentry","category-yii"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/pages\/4935","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/comments?post=4935"}],"version-history":[{"count":1,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/pages\/4935\/revisions"}],"predecessor-version":[{"id":4937,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/pages\/4935\/revisions\/4937"}],"wp:attachment":[{"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/media?parent=4935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/categories?post=4935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bearloga.space\/uk\/wp-json\/wp\/v2\/tags?post=4935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}