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.
		
		
		
		
		
			
		
			
				
					
					
						
							55 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							55 lines
						
					
					
						
							1.8 KiB
						
					
					
				| <?php | |
|  | |
| use core\entities\post\PostCategory; | |
| use yii\grid\ActionColumn; | |
| use yii\helpers\Html; | |
| use yii\grid\GridView; | |
|  | |
| /* @var $this yii\web\View */ | |
| /* @var $searchModel \core\forms\post\search\PostCategorySearch */ | |
| /* @var $dataProvider yii\data\ActiveDataProvider */ | |
| /* @var $type \core\entities\post\PostType */ | |
|  | |
| $title = Yii::t('post', 'Categories'); | |
| $this->title = $type->plural .' > '. $title; | |
| $this->params['breadcrumbs'][] = $title; | |
| ?> | |
| <div class="user-index"> | |
|  | |
|     <p> | |
|         <?= Html::a(Yii::t('post', 'Create Category'), ['create', 'tid' => $type->id], ['class' => 'btn btn-success']) ?> | |
|     </p> | |
|  | |
|     <div class="box"> | |
|         <div class="box-body"> | |
|             <?= GridView::widget([ | |
|                 'dataProvider' => $dataProvider, | |
|                 'filterModel' => $searchModel, | |
|                 'columns' => [ | |
|                     [ | |
|                         'attribute' => 'sort', | |
|                         'options' => ['style' => 'width: 100px;'], | |
|                     ], | |
|                     [ | |
|                         'attribute' => 'name', | |
|                         'value' => function (PostCategory $model) { | |
|                             return Html::a(Html::encode($model->name), ['view', 'id' => $model->id]); | |
|                         }, | |
|                         'format' => 'raw', | |
|                     ], | |
|                     [ | |
|                         'attribute' => 'slug', | |
|                     ], | |
|                     [ | |
|                         'attribute' => 'title', | |
|                     ], | |
|                     [ | |
|                         'class' => ActionColumn::class, | |
|                         'options' => ['style' => 'width: 100px;'], | |
|                         'contentOptions' => ['class' => 'text-center'], | |
|                     ], | |
|                 ], | |
|             ]); ?> | |
|         </div> | |
|     </div> | |
| </div>
 | |
| 
 |