You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					56 lines
				
				2.1 KiB
			
		
		
			
		
	
	
					56 lines
				
				2.1 KiB
			| 
											8 years ago
										 | <?php
 | ||
|  | 
 | ||
| 
											7 years ago
										 | use common\modules\pages\entities\Page;
 | ||
| 
											8 years ago
										 | use yii\grid\ActionColumn;
 | ||
|  | use yii\helpers\Html;
 | ||
|  | use yii\grid\GridView;
 | ||
|  | 
 | ||
|  | /* @var $this yii\web\View */
 | ||
| 
											7 years ago
										 | /* @var $searchModel \common\modules\pages\forms\PageSearch */
 | ||
| 
											8 years ago
										 | /* @var $dataProvider yii\data\ActiveDataProvider */
 | ||
|  | 
 | ||
|  | $this->title = Yii::t('page', 'Pages');
 | ||
|  | $this->params['breadcrumbs'][] = $this->title;
 | ||
|  | ?>
 | ||
|  | <div class="user-index">
 | ||
|  | 
 | ||
|  |     <p>
 | ||
|  |         <?= Html::a(Yii::t('page','Create Page'), ['create'], ['class' => 'btn btn-success']) ?>
 | ||
|  |     </p>
 | ||
|  | 
 | ||
|  |     <div class="box">
 | ||
|  |         <div class="box-body">
 | ||
|  |             <?= GridView::widget([
 | ||
|  |                 'dataProvider' => $dataProvider,
 | ||
|  |                 'filterModel' => $searchModel,
 | ||
|  |                 'columns' => [
 | ||
|  |                     [
 | ||
|  |                         'attribute' => 'title',
 | ||
|  |                         'value' => function (Page $model) {
 | ||
|  |                             $indent = ($model->depth > 1 ? str_repeat('  ', $model->depth - 1) . ' ' : '');
 | ||
|  |                             return $indent . Html::a(Html::encode($model->title), ['view', 'id' => $model->id]);
 | ||
|  |                         },
 | ||
|  |                         'format' => 'raw',
 | ||
|  |                     ],
 | ||
|  |                     [
 | ||
|  |                         'value' => function (Page $model) {
 | ||
|  |                             return
 | ||
|  |                                 Html::a('<span class="glyphicon glyphicon-arrow-up"></span>', ['move-up', 'id' => $model->id]) .
 | ||
|  |                                 Html::a('<span class="glyphicon glyphicon-arrow-down"></span>', ['move-down', 'id' => $model->id]);
 | ||
|  |                         },
 | ||
|  |                         'format' => 'raw',
 | ||
|  |                         'options' => ['style' => 'width: 100px;'],
 | ||
|  |                         'contentOptions' => ['style' => 'text-align: center'],
 | ||
|  |                     ],
 | ||
|  |                     'slug',
 | ||
|  |                     [
 | ||
|  |                         'class' => ActionColumn::class,
 | ||
|  |                         'options' => ['style' => 'width: 100px;'],
 | ||
|  |                         'contentOptions' => ['class' => 'text-center'],
 | ||
|  |                     ],
 | ||
|  |                 ],
 | ||
|  |             ]); ?>
 | ||
|  |         </div>
 | ||
|  |     </div>
 | ||
|  | </div>
 |