_debug.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. if (YII_ENV_DEV) : ?>
  5. <div style="clear:both; padding: 10px 0px 15px 0px;"></div>
  6. <div class="panel panel-default">
  7. <div class="panel-heading">
  8. <h5 class="panel-title">
  9. <a data-toggle="collapse" href="#collapsePanel1">
  10. Debug Data
  11. </a>
  12. </h5>
  13. </div>
  14. <div id="collapsePanel1" class="panel-collapse collapse">
  15. <div class="panel-body">
  16. <dl class="dl-horizontal" style="margin-bottom:0;">
  17. <dt>Module ID:</dt>
  18. <dd><code><?= $this->context->module->id ?></code></dd>
  19. <dt>Module version:</dt>
  20. <dd><code><?= $this->context->module->version ?></code></dd>
  21. <dt>Module vendor:</dt>
  22. <dd><code><?= $this->context->module->getVendor() ?></code></dd>
  23. <dt>Routing prefix:</dt>
  24. <dd><code><?= $this->context->module->routePrefix ?></code></dd>
  25. <dt>Action ID:</dt>
  26. <dd><code><?= $this->context->action->id ?> (<?= $this->context->action->uniqueId ?>)</code></dd>
  27. <dt>Controller ID:</dt>
  28. <dd><code><?= get_class($this->context) ?></code></dd>
  29. </dl>
  30. </div>
  31. </div>
  32. </div>
  33. <?php endif; ?>