AddonsSetting.php 267 B

12345678910111213141516171819
  1. <?php
  2. namespace common\interfaces;
  3. /**
  4. * 插件模块设置接口
  5. *
  6. * Interface AddonsSetting
  7. * @package common\interfaces
  8. */
  9. interface AddonsSetting
  10. {
  11. /**
  12. * 默认设置方法
  13. *
  14. * @return mixed
  15. */
  16. public function actionDisplay();
  17. }