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
|
<?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\Export;
class ExportController extends Controller
{
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
//'only' => ['logout','index'],
'rules' => [
[
'actions' => ['index','save','delete','success'],
'allow' => true,
'roles' => ['admin'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'logout' => ['post'],
],
],
];
}
public function actionIndex()
{
$model = new Export;
$file = 'upload/products.csv';
$model->saveCsv($file);
return Yii::$app->response->sendFile($file)->send();
//return $this->render('index');
}
}
|