-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (26 loc) · 774 Bytes
/
index.php
File metadata and controls
27 lines (26 loc) · 774 Bytes
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
<?php
/**
* created by Ekilei <[email protected]>
*/
?>
<?= \skeeks\cms\modules\admin\widgets\GridViewStandart::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'adminController' => $controller,
'isOpenNewWindow' => $isOpenNewWindow ? true : false,
'columns' => [
[
'class' => \skeeks\cms\grid\CreatedAtColumn::className(),
'label' => \Yii::t('skeeks/seo','Added')
],
[
'class' => \skeeks\cms\grid\CreatedByColumn::className(),
],
[
'attribute' => 'cms_site_id',
'class' => \skeeks\cms\grid\SiteColumn::className(),
],
['attribute' => 'file_path'],
['attribute' => 'active'],
],
]); ?>