54 lines
1.3 KiB
PHP
Executable File
54 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace app\modules\news\controllers;
|
|
|
|
use yii\filters\AccessControl;
|
|
use yii\filters\VerbFilter;
|
|
use yii\web\Controller;
|
|
|
|
/**
|
|
* Default controller for the `news` module
|
|
*/
|
|
class DefaultController extends Controller
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function behaviors()
|
|
{
|
|
return array_merge(
|
|
parent::behaviors(),
|
|
[
|
|
'access' => [
|
|
'class' => AccessControl::class,
|
|
'rules' => [
|
|
[
|
|
'actions' => ['login', 'error'],
|
|
'allow' => true,
|
|
],
|
|
[
|
|
'actions' => ['logout', 'index'],
|
|
'allow' => true,
|
|
'roles' => ['@'],
|
|
],
|
|
],
|
|
],
|
|
'verbs' => [
|
|
'class' => VerbFilter::className(),
|
|
'actions' => [
|
|
'delete' => ['POST'],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
}
|
|
/**
|
|
* Renders the index view for the module
|
|
* @return string
|
|
*/
|
|
public function actionIndex()
|
|
{
|
|
return $this->render('index');
|
|
}
|
|
}
|