| 12345678910111213141516171819202122232425 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $panel yii\debug\panels\UserPanel */
- ?>
- <div class="yii-debug-toolbar__block">
- <a href="<?= $panel->getUrl() ?>">
- <?php if (!isset($panel->data['id'])): ?>
- <span class="yii-debug-toolbar__label">Guest</span>
- <?php else: ?>
- <?php if (Yii::$app->getUser()->isGuest || $panel->userSwitch->isMainUser()): ?>
- User <span
- class="yii-debug-toolbar__label yii-debug-toolbar__label_info"><?= $panel->data['id'] ?></span>
- <?php else: ?>
- User switching <span
- class="yii-debug-toolbar__label yii-debug-toolbar__label_warning"><?= $panel->data['id'] ?></span>
- <?php endif; ?>
- <?php if ($panel->canSwitchUser()): ?>
- <span class="yii-debug-toolbar__switch-icon yii-debug-toolbar__userswitch"
- id="yii-debug-toolbar__switch-users">
- </span>
- <?php endif; ?>
- <?php endif; ?>
- </a>
- </div>
|