portal.mkgtu.ru/backend/views/regulation/update.php

14 lines
423 B
PHP
Executable File

<?php
$this->title = 'Изменить нормативный документ: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Нормативные документы', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Изменить';
echo $this->render('_form', [
'model' => $model,
]);