| 1234567891011121314151617181920212223 |
- <?php
- namespace addons\ShortVideo\api\modules\v1\controllers;
- use addons\ShortVideo\common\models\ShortVideoConfig;
- use api\controllers\OnAuthController;
- /**
- * 默认控制器
- *
- * Class DefaultController
- * @package addons\ShortVideo\api\modules\v1\controllers
- */
- class BaseController extends OnAuthController
- {
- public function beforeAction($action)
- {
- parent::beforeAction($action);
- $configs = ShortVideoConfig::getConfig($this->mall_id);
- if (empty($configs) || 1 != $configs['is_enabled']) return $this->error('短视频插件未启用');
- return $action;
- }
- }
|