portal.mkgtu.ru/backend/views/user/create.php

15 lines
349 B
PHP
Executable File

<?php
$this->title = Yii::t('backend', 'Создание {modelClass}', [
'modelClass' => 'User',
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('backend', 'Пользователи'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
echo $this->render('_form', [
'model' => $model,
'roles' => $roles
]);