| 12345678910111213141516171819202122 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\alliance\controllers;
- use app\librarys\PluginCallback;
- class PluginController extends BaseController
- {
- /**
- * 客户端插件入口
- * @return \yii\web\Response
- */
- public function actionCallback()
- {
- $data = PluginCallback::execute(false, true);
- return $this->asJson($data);
- }
- }
|