create.php
917 Bytes
<?php
use common\models\SeoDynamic;
use common\models\SeoDynamicLang;
use yii\helpers\Html;
use yii\helpers\Url;
use yii\web\View;
/**
* @var View $this
* @var SeoDynamic $model
* @var SeoDynamicLang[] $model_langs
* @var int $seo_category_id
*/
$this->title = Yii::t('app', 'Create Seo Dynamic');
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('app', 'Seo Dynamics'),
'url' => Url::toRoute([
'index',
'seo_category_id' => $seo_category_id,
]),
];
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="seo-dynamic-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
'model_langs' => $model_langs,
]) ?>
</div>