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.

22 lines
511 B

7 years ago
<?php
3 years ago
use core\entities\post\PostType;
use core\forms\post\PostCategoryForm;
7 years ago
/* @var $this yii\web\View */
3 years ago
/* @var $model PostCategoryForm */
/* @var $type PostType */
7 years ago
$title = Yii::t('post', 'Create Category');
$this->title = $type->plural . ' > ' . $title;
$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Categories'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $title;
?>
<div class="category-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>