| 1234567891011121314151617181920212223242526272829 | <?phpuse yii\helpers\Html;use yii\grid\GridView;/* @var $this yii\web\View *//* @var $dataProvider yii\data\ActiveDataProvider */$this->title = 'Article Modules';$this->params['breadcrumbs'][] = $this->title;?><?php $this->beginBlock('content-header') ?><?= $this->title . ' ' . Html::a('Create Article Module', ['create'], ['class' => 'btn btn-success']) ?><?php $this->endBlock() ?>    <div class="box box-success">        <div class="box-body">            <?= GridView::widget([                'dataProvider' => $dataProvider,                'columns' => [                    'id',                    'name',                    'title',                    ['class' => 'common\helpers\DiyActionColumn'],                ],            ]); ?>        </div>    </div>
 |