2013-05-24 10:14:49 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\controllers;
|
|
|
|
|
|
|
|
use Yii;
|
2013-09-18 23:11:55 -04:00
|
|
|
use yii\web\AccessControl;
|
2013-05-24 10:14:49 -04:00
|
|
|
use yii\web\Controller;
|
2013-09-18 23:11:55 -04:00
|
|
|
use yii\web\VerbFilter;
|
2013-05-24 10:14:49 -04:00
|
|
|
use app\models\LoginForm;
|
|
|
|
use app\models\ContactForm;
|
|
|
|
|
|
|
|
class SiteController extends Controller
|
|
|
|
{
|
2013-09-16 02:41:19 +04:00
|
|
|
public function behaviors()
|
|
|
|
{
|
2013-10-18 09:48:27 +00:00
|
|
|
return [
|
|
|
|
'access' => [
|
2013-09-18 23:11:55 -04:00
|
|
|
'class' => AccessControl::className(),
|
2013-11-07 01:19:36 +04:00
|
|
|
'only' => ['logout'],
|
2013-10-18 09:48:27 +00:00
|
|
|
'rules' => [
|
|
|
|
[
|
|
|
|
'actions' => ['logout'],
|
2013-09-16 02:41:19 +04:00
|
|
|
'allow' => true,
|
2013-10-18 09:48:27 +00:00
|
|
|
'roles' => ['@'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'verbs' => [
|
2013-09-18 23:11:55 -04:00
|
|
|
'class' => VerbFilter::className(),
|
2013-10-18 09:48:27 +00:00
|
|
|
'actions' => [
|
|
|
|
'logout' => ['post'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
2013-09-16 02:41:19 +04:00
|
|
|
}
|
|
|
|
|
2013-05-24 10:14:49 -04:00
|
|
|
public function actions()
|
|
|
|
{
|
2013-10-18 09:48:27 +00:00
|
|
|
return [
|
|
|
|
'error' => [
|
2013-08-10 07:33:24 -04:00
|
|
|
'class' => 'yii\web\ErrorAction',
|
2013-10-18 09:48:27 +00:00
|
|
|
],
|
|
|
|
'captcha' => [
|
2013-08-03 07:20:39 -04:00
|
|
|
'class' => 'yii\captcha\CaptchaAction',
|
2013-08-10 07:33:24 -04:00
|
|
|
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
|
2013-10-18 09:48:27 +00:00
|
|
|
],
|
|
|
|
];
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function actionIndex()
|
2013-07-08 06:47:10 -04:00
|
|
|
{
|
2013-06-13 23:39:18 -04:00
|
|
|
return $this->render('index');
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function actionLogin()
|
|
|
|
{
|
2013-11-07 01:19:36 +04:00
|
|
|
if (!\Yii::$app->user->isGuest) {
|
2014-02-15 16:32:24 +01:00
|
|
|
return $this->goHome();
|
2013-11-07 01:19:36 +04:00
|
|
|
}
|
|
|
|
|
2013-05-24 10:14:49 -04:00
|
|
|
$model = new LoginForm();
|
2014-02-15 16:32:24 +01:00
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->login()) {
|
2013-10-01 20:01:14 +02:00
|
|
|
return $this->goBack();
|
2013-05-24 10:14:49 -04:00
|
|
|
} else {
|
2013-10-18 09:48:27 +00:00
|
|
|
return $this->render('login', [
|
2013-05-24 10:14:49 -04:00
|
|
|
'model' => $model,
|
2013-10-18 09:48:27 +00:00
|
|
|
]);
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionLogout()
|
|
|
|
{
|
2013-06-13 23:39:18 -04:00
|
|
|
Yii::$app->user->logout();
|
2013-08-12 13:19:37 -04:00
|
|
|
return $this->goHome();
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function actionContact()
|
|
|
|
{
|
2014-02-15 17:53:57 +01:00
|
|
|
$model = new ContactForm();
|
2014-02-15 16:32:24 +01:00
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) {
|
2013-05-24 10:14:49 -04:00
|
|
|
Yii::$app->session->setFlash('contactFormSubmitted');
|
2013-06-26 08:34:27 -04:00
|
|
|
return $this->refresh();
|
2013-05-24 10:14:49 -04:00
|
|
|
} else {
|
2013-10-18 09:48:27 +00:00
|
|
|
return $this->render('contact', [
|
2013-05-24 10:14:49 -04:00
|
|
|
'model' => $model,
|
2013-10-18 09:48:27 +00:00
|
|
|
]);
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionAbout()
|
|
|
|
{
|
2013-06-13 23:39:18 -04:00
|
|
|
return $this->render('about');
|
2013-05-24 10:14:49 -04:00
|
|
|
}
|
2014-02-15 17:53:57 +01:00
|
|
|
}
|