plugin_model.php 486 B

12345678910111213141516171819202122232425
  1. <?php
  2. if(!defined("PHPOK_SET")){exit("<h1>Access Denied</h1>");}
  3. class plugin_model extends Model
  4. {
  5. function __construct()
  6. {
  7. parent::Model();
  8. }
  9. function plugin_model()
  10. {
  11. $this->__construct();
  12. }
  13. //取得符合条件的插件信息
  14. function get_all($string="")
  15. {
  16. if(!$string)
  17. {
  18. return false;
  19. }
  20. $sql = "SELECT * FROM ".$this->db->prefix."plugins WHERE status='1' AND hooks LIKE '%".$string."%' ORDER BY taxis ASC,id DESC";
  21. return $this->db->get_all($sql);
  22. }
  23. }