WxappPlugin.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace plugins\wxapp;//Demo插件英文名,改成你的插件英文就行了
  10. use cmf\lib\Plugin;
  11. //Demo插件英文名,改成你的插件英文就行了
  12. class WxappPlugin extends Plugin
  13. {
  14. public $info = [
  15. 'name' => 'Wxapp',//Demo插件英文名,改成你的插件英文就行了
  16. 'title' => '微信小程序',
  17. 'description' => '微信小程序管理工具',
  18. 'status' => 1,
  19. 'author' => 'ThinkCMF',
  20. 'version' => '1.0',
  21. 'demo_url' => 'http://demo.thinkcmf.com',
  22. 'author_url' => 'http://www.thinkcmf.com'
  23. ];
  24. public $hasAdmin = 1;//插件是否有后台管理界面
  25. // 插件安装
  26. public function install()
  27. {
  28. return true;//安装成功返回true,失败false
  29. }
  30. // 插件卸载
  31. public function uninstall()
  32. {
  33. return true;//卸载成功返回true,失败false
  34. }
  35. }