update.php 625 B

12345678910111213141516171819
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\modules\i18n\models\I18nSourceMessage */
  4. $this->title = Yii::t('backend', 'Update {modelClass}: ', [
  5. 'modelClass' => 'I18n Source Message',
  6. ]) . ' ' . $model->id;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('backend', 'I18n Source Messages'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
  9. $this->params['breadcrumbs'][] = Yii::t('backend', 'Update');
  10. ?>
  11. <div class="i18n-source-message-update">
  12. <?php echo $this->render('_form', [
  13. 'model' => $model,
  14. ]) ?>
  15. </div>