Blame view

backend/widgets/LangSwitch/views/LangSwitch.php 337 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  use yii\bootstrap\Nav;
  
  /**
   * @var \backend\widgets\LangSwitch\LangSwitch $current
   * @var \thread\app\model\Language $models
   */
  echo Nav::widget([
      'options' => ['class' => 'nav navbar-top-links navbar-right'],
      'items' => [
          [
              'label' => $current,
              'items' => $models,
          ],
      ],
  ]);