Blame view

app/modules/admin/controllers/TextController.php 1.65 KB
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  <?php

  

  namespace app\modules\admin\controllers;

  

  use Yii;

  use yii\web\Controller;

  use yii\filters\AccessControl;

  use yii\filters\VerbFilter;

  use yii\data\ActiveDataProvider;

  use app\modules\admin\models\Text;

  

  

  class TextController extends Controller

  {

      public function behaviors()

      {

          return [

              'access' => [

                  'class' => AccessControl::className(),

                  //'only' => ['logout','index'],

                  'rules' => [

                      [

                          'actions' => ['index','save','delete'],

                          'allow' => true,

                          'roles' => ['admin'],

                      ],					

                  ],

              ],

              'verbs' => [

                  'class' => VerbFilter::className(),

                  'actions' => [

                      'logout' => ['post'],

                  ],

              ],

          ];

      }

  	

      public function actionIndex()

      {

  		$dataProvider = new ActiveDataProvider([

  			'query' => Text::find(),

  			'pagination' => [

  				'pageSize' => 20,

  			],

  		]);	

          return $this->render('index',['dataProvider'=>$dataProvider]);

      }

  	

      public function actionSave()

      {

  		$model = (!empty($_GET['id'])) ? Text::findOne($_GET['id']) : new Text;

  

  		if ($model->load(Yii::$app->request->post()) && $model->save()) {

  		

  			return Yii::$app->response->redirect(['/admin/text/index']);

  		}

          return $this->render('save',['model'=>$model]);

      }

  

  	public function actionDelete(){

  		$model = Text::findOne($_GET['id']);

  		$model->delete();

  		return Yii::$app->response->redirect(['/admin/text/index']);

  	}	

  }