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