| 1234567891011121314151617181920212223242526 |
- <?php
- namespace pt\widgets;
- use common\components\util;
- use yii\base\Widget;
- use common\components\dict;
- use common\services\xhWxOpenService;
- class FooterWidget extends Widget
- {
- public $message;
-
- public function init()
- {
- parent::init();
- }
-
- public function run($isOpen)
- {
- util::stop('取平台信息方式错误');
- $open = [];
- return $this->render('footer', ['open' => $open]);
- }
-
- }
|