SubTabWidget.php 296 B

123456789101112131415161718192021
  1. <?php
  2. namespace pt\widgets;
  3. use yii\base\Widget;
  4. class SubTabWidget extends Widget
  5. {
  6. public $list, $currentMenu;
  7. public function init()
  8. {
  9. parent::init();
  10. }
  11. public function run()
  12. {
  13. return $this->render('subTab', ['list' => $this->list, 'currentMenu'=> $this->currentMenu]);
  14. }
  15. }