|
12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * 文档关键词选择
- *
- * @version $Id: article_keywords_select.php$
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2020, DedeBIZ.COM
- * @license https://www.dedebiz.com/license/v6
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__)."/config.php");
- require_once(DEDEINC."/datalistcp.class.php");
- setcookie("ENV_GOBACK_URL",$dedeNowurl,time()+3600,"/");
-
- $f = RemoveXSS($f);
-
- if(empty($keywords)) $keywords = "";
-
- $sql = "SELECT * FROM #@__keywords ORDER BY rank DESC";
- $dlist = new DataListCP();
- $dlist->SetTemplate(DEDEADMIN."/templets/article_keywords_select.htm");
- $dlist->pageSize = 300;
- $dlist->SetParameter("f",$f);
- $dlist->SetSource($sql);
- $dlist->Display();
-
- function GetSta($sta)
- {
- if($sta==1) return "正常";
- else return "<font color='red'>禁用</font>";
- }
-
- function GetMan($sta)
- {
- if($sta==1) return "<u>禁用</u>";
- else return "<u>启用</u>";
- }
|