本文整理汇总了PHP中frontend\models\ContactForm::validate方法的典型用法代码示例。如果您正苦于以下问题:PHP ContactForm::validate方法的具体用法?PHP ContactForm::validate怎么用?PHP ContactForm::validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类frontend\models\ContactForm
的用法示例。
在下文中一共展示了ContactForm::validate方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->getRequest()->getBodyParams(), '') && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
$response = ['flash' => ['class' => 'success', 'message' => 'Thank you for contacting us. We will respond to you as soon as possible.']];
} else {
$response = ['flash' => ['class' => 'error', 'message' => 'There was an error sending email.']];
}
return $response;
} else {
$model->validate();
return $model;
}
}
示例2: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
\Yii::$app->common->sendMail($model->subject, $model->body);
}
return $this->render('contact', ['model' => $model]);
}
示例3: actionContact
/**
* Contact.
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$success = $model->sendEmail(\Yii::$app->params['adminEmail']);
if ($success) {
\Yii::$app->session->setFlash('success', 'Your message has been sent!');
$this->refresh('#form');
}
}
return $this->render('contact', ['model' => $model]);
}
示例4: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$body = '<div>Body: <b>' . $model->body . ' </b></div>';
$body .= '<div>Email: <b>' . $model->email . ' </b></div>';
\Yii::$app->common->sendMail($model->subject, $body);
print 'Send success';
}
return $this->render('contact', ['model']);
//return $this->render('inner');
}
示例5: actionFeedback
public function actionFeedback()
{
$model = new ContactForm();
if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->settings->get('main.supportEmail'))) {
return 'Спасибо за ваше сообщение, мы обязательно ответим вам в ближайшее время.';
} else {
return 'Что то пошло не так :( Попробуйте позднее';
}
}
return 'Что то пошло не так :(';
}
示例6: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$body = " <div>Body: <b> " . $model->body . " </b></div>";
$body .= " <div>Email: <b> " . $model->email . " </b></div>";
\Yii::$app->common->sendMail($model->subject, $body);
print "Send success";
die;
}
return $this->render("contact", ['model' => $model]);
}
示例7: actionContact
/**
* Displays the contact static page and sends the contact email.
*
* @return string|\yii\web\Response
*/
public function actionContact()
{
$model = new ContactForm();
if (!$model->load(Yii::$app->request->post()) || !$model->validate()) {
return $this->render('contact', ['model' => $model]);
}
if (!$model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('error', Yii::t('app', 'There was some error while sending email.'));
return $this->refresh();
}
Yii::$app->session->setFlash('success', Yii::t('app', 'Thank you for contacting us. We will respond to you as soon as possible.'));
return $this->refresh();
}
示例8: actionContact
/**
* Displays the contact static page and sends the contact email.
*
* @return string|\yii\web\Response
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->contact(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.');
} else {
Yii::$app->session->setFlash('error', 'There was an error sending email.');
}
return $this->refresh();
}
return $this->render('contact', ['model' => $model]);
}
示例9: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Terima kasih sudah menghubungi kami. Pertanyaan anda akan kami jawab secepatnya.. ');
} else {
Yii::$app->session->setFlash('error', 'Maaf pesan gagal dikirim.coba ulangi lagi.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
示例10: actionContact
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Спасибо за Ваше сообщение. Мы ответим вам при первой возможности.');
} else {
Yii::$app->session->setFlash('error', 'При отправке сообщения произошла ошибка.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
示例11: actionContact
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', Yii::t('c/radiata/contact', 'Thank you'));
} else {
Yii::$app->session->setFlash('error', Yii::t('c/radiata/contact', 'Errors'));
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
示例12: actionContact
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', ['type' => 'success', 'duration' => 12000, 'icon' => 'fa fa-envelope', 'message' => 'Thank you for contacting us. We will respond to you as soon as possible.', 'title' => 'Sending Message']);
} else {
Yii::$app->session->setFlash('error', ['type' => 'danger', 'duration' => 12000, 'icon' => 'fa fa-envelope', 'message' => 'There was an error sending email.', 'title' => 'Sending Message']);
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
示例13: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', "Дякую, що написали нам. Ми зв'яжимось з вами.");
} else {
Yii::$app->session->setFlash('error', 'Виникла помилка при відправці листа. Будь ласка спробуйте пізніше');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
示例14: actionContact
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail()) {
Yii::$app->getSession()->setFlash('success', ['type' => 'success', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-envelope', 'message' => 'Muchas gracias por contactarnos. Le responderemos a la brevedad', 'title' => 'Contacto', 'positonY' => 'top', 'positonX' => 'center']);
return $this->goHome();
} else {
Yii::$app->getSession()->setFlash('danger', ['type' => 'danger', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-exclamation-sign', 'message' => 'Ocurrió un error al enviar el mail. Por favor, comuníquese con info@remisesramallo.com.ar', 'title' => 'Contacto', 'positonY' => 'top', 'positonX' => 'center']);
return $this->goHome();
}
} else {
return $this->renderAjax('contact', ['model' => $model]);
}
}
示例15: actionContact
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$this->pageDescription = 'Если у вас есть деловое предложение или другие вопросы, пожалуйста, заполните форму на странице, чтобы связаться с нами.';
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['infoEmail'])) {
Yii::$app->session->setFlash('success', 'Ваше сообщение было отправлено.<br/> Наши сотрудники в кратчайшее время свяжуться с Вами по электронной почте, которая была указана в форме. Благодарим Вас за обращение к нам.');
} else {
Yii::$app->session->setFlash('error', 'Oшибка отправки электронной почты.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}