国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
579B

  1. <?php
  2. /**
  3. * AI模型管理
  4. *
  5. * @version $id:ai_main.php 2025 tianya $
  6. * @package DedeBIZ.Administrator
  7. * @copyright Copyright (c) 2025 DedeBIZ.COM
  8. * @license GNU GPL v2 (https://www.dedebiz.com/license)
  9. * @link https://www.dedebiz.com
  10. */
  11. require_once(dirname(__FILE__).'/config.php');
  12. require_once(DEDEINC.'/datalistcp.class.php');
  13. CheckPurview('ai_List');
  14. $sql = "SELECT * FROM `#@__ai` ORDER BY id DESC";
  15. $dlist = new DataListCP();
  16. $dlist->SetTemplet(DEDEADMIN.'/templets/ai_main.htm');
  17. $dlist->SetSource($sql);
  18. $dlist->display();
  19. ?>