PluginController.php 557 B

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