📄 freelist_action.php
字号:
<?php
require_once(dirname(__FILE__)."/config.php");
CheckPurview('c_FreeList');
if(!isset($types))
{
$types = '';
}
if(!isset($nodefault))
{
$nodefault = '0';
}
/*-------------
function __AddNew()
--------------*/
if($dopost=='addnew')
{
$atts = " pagesize='$pagesize' col='$col' titlelen='$titlelen' orderby='$orderby' orderway='$order' ";
$ntype = '';
$edtime = time();
if(empty($channel))
{
showmsg('频道类型不能为空','-1');
exit();
}
if(is_array($types))
{
foreach($types as $v) $ntype .= $v.' ';
}
if($ntype!='')
{
$atts .= " type='".trim($ntype)."' ";
}
if(!empty($typeid))
{
$atts .= " typeid='$typeid' ";
}
if(!empty($channel))
{
$atts .= " channel='$channel' ";
}
if(!empty($subday))
{
$atts .= " subday='$subday' ";
}
if(!empty($titlelen))
{
$atts .= " keyword='$keyword' ";
}
if(!empty($att))
{
$atts .= " att='$att' ";
}
$innertext = trim($innertext);
if(!empty($innertext))
{
$innertext = stripslashes($innertext);
}
$listTag = "{dede:list $atts}$innertext{/dede:list}";
$listTag = addslashes($listTag);
$inquery = "
INSERT INTO `#@__freelist`(`title` , `namerule` , `listdir` , `defaultpage` , `nodefault` , `templet` , `edtime` , `click` , `listtag` , `keyword` , `description`)
VALUES ('$title','$namerule','$listdir','$defaultpage','$nodefault','$templet','$edtime','0','$listTag','$keyword','$description');
";
$dsql->ExecuteNoneQuery($inquery);
ShowMsg("成功增加一个自由列表!","freemenu_main.php");
exit();
}
/*-------------
function __Edit()
--------------*/
if($dopost=='edit')
{
$atts = " pagesize='$pagesize' col='$col' titlelen='$titlelen' orderby='$orderby' orderway='$order' \r\n";
$ntype = '';
$edtime = time();
if(is_array($types))
{
foreach($types as $v)
{
$ntype .= $v.' ';
}
}
if($ntype!='')
{
$atts .= " type='".trim($ntype)."' ";
}
if(!empty($typeid))
{
$atts .= " typeid='$typeid' ";
}
if(!empty($channel))
{
$atts .= " channel='$channel' ";
}
if(!empty($subday))
{
$atts .= " subday='$subday' ";
}
if(!empty($titlelen))
{
$atts .= " keyword='$keyword' ";
}
if(!empty($att))
{
$atts .= " att='$att' ";
}
$innertext = trim($innertext);
if(!empty($innertext))
{
$innertext = stripslashes($innertext);
}
$listTag = "{dede:list $atts}$innertext{/dede:list}";
$listTag = addslashes($listTag);
$inquery = "
Update `#@__freelist` set
title='$title', namerule='$namerule',
listdir='$listdir', defaultpage='$defaultpage',
nodefault='$nodefault', templet='$templet',
edtime='$edtime', listtag='$listTag', keyword='$keyword',
description='$description' where aid='$aid';
";
$dsql->ExecuteNoneQuery($inquery);
ShowMsg("成功更改一个自由列表!","freemenu_main.php");
exit();
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -