FotosController.php
1.89 KB
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
66
67
<?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 yii\data\ArrayDataProvider;
use app\modules\admin\models\Fotos;
class FotosController 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' => Fotos::find()->where('product_id=:product_id',[':product_id'=>$_GET['productID']])->orderBy('id'),
'pagination' => [
'pageSize' => 20,
],
]);
return $this->render('index',['dataProvider'=>$dataProvider]);
}
public function actionSave()
{
$model = (!empty($_GET['id'])) ? Fotos::findOne($_GET['id']) : new Fotos;
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return Yii::$app->response->redirect(['/admin/fotos/index','productID'=>$_GET['productID'],'catID'=>$_GET['catID']]);
}
return $this->render('save',['model'=>$model]);
}
public function actionDelete(){
$model = Fotos::findOne($_GET['id']);
$model->delete();
return Yii::$app->response->redirect(['/admin/fotos/index','productID'=>$_GET['productID'],'catID'=>$_GET['catID']]);
}
}