yii2-netdisk/controllers/SiteController.php

64 lines
1.2 KiB
PHP
Raw Normal View History

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
{
public function actions()
{
return array(
'captcha' => array(
2013-08-03 19:20:39 +08:00
'class' => 'yii\captcha\CaptchaAction',
2013-07-31 19:18:59 +08:00
'fixedVerifyCode' => YII_ENV_DEV ? 'testme' : null,
2013-05-24 22:14:49 +08:00
),
);
}
public function actionIndex()
2013-07-08 18:47:10 +08:00
{
2013-08-09 09:06:40 +08:00
Yii::warning('test');
return $this->render('index');
2013-05-24 22:14:49 +08:00
}
public function actionLogin()
{
$model = new LoginForm();
if ($model->load($_POST) && $model->login()) {
return $this->redirect(array('site/index'));
2013-05-24 22:14:49 +08:00
} else {
return $this->render('login', array(
2013-05-24 22:14:49 +08:00
'model' => $model,
));
}
}
public function actionLogout()
{
Yii::$app->user->logout();
return $this->redirect(array('site/index'));
2013-05-24 22:14:49 +08:00
}
public function actionContact()
{
$model = new ContactForm;
if ($model->load($_POST) && $model->contact(Yii::$app->params['adminEmail'])) {
2013-05-24 22:14:49 +08:00
Yii::$app->session->setFlash('contactFormSubmitted');
return $this->refresh();
2013-05-24 22:14:49 +08:00
} else {
return $this->render('contact', array(
2013-05-24 22:14:49 +08:00
'model' => $model,
));
}
}
public function actionAbout()
{
return $this->render('about');
2013-05-24 22:14:49 +08:00
}
}