Blame view

frontend/views/page/view.php 396 Bytes
f3b6b9b1   Alexey Boroda   -Seo component in...
1
  <?php
8596ef4b   Alexey Boroda   -Seo component ready
2
      use artbox\core\models\Language;
f3b6b9b1   Alexey Boroda   -Seo component in...
3
4
5
6
7
8
9
10
      use artbox\core\models\Page;
      use yii\helpers\Url;
      use yii\web\View;
      
      /**
       * @var View $this
       * @var Page $model
       */
f3b6b9b1   Alexey Boroda   -Seo component in...
11
12
13
14
15
16
17
18
  ?>
  
  <h1>
      <?= $model->lang->title ?>
      
      <?= Url::to(
          [
              'page/view',
8596ef4b   Alexey Boroda   -Seo component ready
19
20
              'id'   => $model->id,
              'lang' => Language::getCurrent()->id,
f3b6b9b1   Alexey Boroda   -Seo component in...
21
22
23
          ]
      ) ?>
  </h1>