plugin.sys.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. if(!defined('LIBS'))
  3. {
  4. exit('error: Not define libs');
  5. }
  6. class Plugin
  7. {
  8. var $db;
  9. var $config;
  10. //var $app;
  11. function Plugin()
  12. {
  13. //$app = sys_init();
  14. //$this->app = $app;
  15. }
  16. //加载数据库运行
  17. function load_db($db)
  18. {
  19. $this->db = $db;
  20. }
  21. function load_plugin($plugin_name)
  22. {
  23. if(is_array($plugin_name))
  24. {
  25. foreach($plugin_name AS $key=>$value)
  26. {
  27. $this->load_plugin($value);
  28. }
  29. }
  30. else
  31. {
  32. $this->_load_plugin($plugin_name);
  33. }
  34. return true;
  35. }
  36. function _load_plugin($plugin_name)
  37. {
  38. if(!$plugin_name)
  39. {
  40. return false;
  41. }
  42. if(!$plugin_name || !defined("APP_NAME"))
  43. {
  44. return false;
  45. }
  46. if(!defined("PLUGIN_NAME"))
  47. {
  48. define("PLUGIN_NAME",APP_NAME);
  49. }
  50. //判断插件是否已安装
  51. $config_file = ROOT_PLUGIN.$plugin_name."/config.php";
  52. if(!file_exists($config_file))
  53. {
  54. return false;
  55. }
  56. $config = array();
  57. include($config_file);
  58. $plugin_file = ROOT_PLUGIN.$plugin_name."/".PLUGIN_NAME.".php";
  59. if(!file_exists($plugin_file))
  60. {
  61. return false;
  62. }
  63. include_once($plugin_file);//执行函数
  64. $set_name = "plugin_".$plugin_name;
  65. $this->$set_name = new $set_name();
  66. $this->$set_name->db = $this->db;
  67. $this->config = $config;
  68. $this->$set_name->config = $config;
  69. unset($set_name,$plugin_file,$plugin_name);
  70. return true;
  71. }
  72. //插件编辑常涉及到的函数
  73. function index()
  74. {
  75. return false;
  76. }
  77. //设置
  78. function set($rs)
  79. {
  80. return false;
  81. }
  82. //存储扩展
  83. function setok($id)
  84. {
  85. return false;
  86. }
  87. //配置文件操作
  88. function config($rs)
  89. {
  90. return false;
  91. }
  92. //返回内容信息
  93. function content($rs)
  94. {
  95. return false;
  96. }
  97. }
  98. ?>