PluginController.php 511 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\modules\alliance\controllers;
  8. use app\librarys\PluginCallback;
  9. class PluginController extends BaseController
  10. {
  11. /**
  12. * 客户端插件入口
  13. * @return \yii\web\Response
  14. */
  15. public function actionCallback()
  16. {
  17. $data = PluginCallback::execute(false, true);
  18. return $this->asJson($data);
  19. }
  20. }