per.php 482 B

123456789101112131415161718192021
  1. <?php
  2. use backend\widgets\TabWidget;
  3. echo TabWidget::widget(['list' => $this->context->menuList, 'currentMenu' => $this->context->id]);
  4. ?>
  5. <div class="panel panel-default">
  6. <?php
  7. use backend\widgets\SubTabWidget;
  8. echo SubTabWidget::widget(['list' => $this->context->subMenuList, 'currentMenu' => $this->context->action->id]);
  9. ?>
  10. <div class="panel-body">
  11. </div>
  12. </div>
  13. <!-- footer -->
  14. <?php
  15. use backend\widgets\FooterWidget;
  16. ?>
  17. <?= FooterWidget::widget() ?>
  18. <!-- footer -->