ecshop后台文章加上日期时间的方法

郑重承诺丨优站网提供安全交易、信息保真!
增值服务:
自动发货
网盘下载
安装指导
环境配置
二次开发
网站建设
¥ 0 (VIP免费升级VIP开通VIP尊享优惠特权
立即下载 升级会员 购买教程 售后支持
详情介绍

1、打开 /admin/templates/article_info.htm 文件,加一个修改时间
在第三行下面加入调用日历JS代码
<script type=”text/javascript” src=”../js/calendar.php?lang={$cfg_lang}”></script>
<link href=”../js/calendar/calendar.css” rel=”stylesheet” type=”text/css” />

 

找到
<tr>
<td class=”narrow-label”>{$lang.author}</td>
<td><input type=”text” name=”author” maxlength=”60″ value=”{$article.author|escape}” /></td>
</tr>

在其下面添加以下代码
<!–新加日期修改 开始–>
<tr>
<td class=”narrow-label”>{$lang.add_time}</td>
<td><input name=”add_time” type=”text” id=”add_time” size=”20″ value='{$article.add_time}’ readonly=”readonly” /><input name=”selbtn1″ type=”button” id=”selbtn1″ onclick=”return showCalendar(‘add_time’, ‘%Y-%m-%d %H:%M’, ’24’, false, ‘selbtn1’);” value=”{$lang.btn_sel ect}” class=”button”/></td>
</tr>
<!–新加日期修改 结束–>

2、打开 /admin/article.php 文件
找到
/*初始化*/
$article = array();
$article[‘is_open’] = 1;

在其下面添加以下代码
$article[‘add_time’] = local_date(‘Y-m-d H:i’);

找到
/* 取文章数据 */
$sql = “SELECT * FROM ” .$ecs->table(‘article’). ” WHERE article_id=’$_REQUEST[id]’”;
$article = $db->GetRow($sql);

在其下面添加以下代码
$article[‘add_time’] = local_date(‘Y-m-d H:i’,$article[‘add_time’]);

找到
/*插入数据*/
$add_time = gmtime();
if (empty($_POST[‘cat_id’]))
{
$_POST[‘cat_id’] = 0;
}
$sql = “INSERT INTO “.$ecs->table(‘article’).”(title, cat_id, article_type, is_open, author, “.
“author_email, keywords, content, add_time, file_url, open_type, link, description) “.
“VALUES (‘$_POST[title]’, ‘$_POST[article_cat]’, ‘$_POST[article_type]’, ‘$_POST[is_open]’, “.
“‘$_POST[author]’, ‘$_POST[author_email]’, ‘$_POST[keywords]’, ‘$_POST[FCKeditor1]’, “.
“‘$add_time’, ‘$file_url’, ‘$open_type’, ‘$_POST[link_url]’, ‘$_POST[description]’)”;
$db->query($sql);

修改为:
/*插入数据*/
$add_time = gmtime();
if (empty($_POST[‘cat_id’]))
{
$_POST[‘cat_id’] = 0;
}
$add_time = local_strtotime($_POST[‘add_time’]);
$sql = “INSERT INTO “.$ecs->table(‘article’).”(title, cat_id, article_type, is_open, author, “.
“author_email, keywords, content, add_time, file_url, open_type, link, description) “.
“VALUES (‘$_POST[title]’, ‘$_POST[article_cat]’, ‘$_POST[article_type]’, ‘$_POST[is_open]’, “.
“‘$_POST[author]’, ‘$_POST[author_email]’, ‘$_POST[keywords]’, ‘$_POST[FCKeditor1]’, “.
“‘$add_time’, ‘$file_url’, ‘$open_type’, ‘$_POST[link_url]’, ‘$_POST[description]’)”;
$db->query($sql);

找到
if ($exc->edit(“title=’$_POST[title]’, cat_id=’$_POST[article_cat]’, article_type=’$_POST[article_type]’, is_open=’$_POST[is_open]’, author=’$_POST[author]’, author_email=’$_POST[author_email]’, keywords =’$_POST[keywords]’, file_url =’$file_url’, open_type=’$open_type’, content=’$_POST[FCKeditor1]’, link=’$_POST[link_url]’, description = ‘$_POST[description]’”, $_POST[‘id’]))
修改为:
$add_time = local_strtotime($_POST[‘add_time’]);
if ($exc->edit(“title=’$_POST[title]’, cat_id=’$_POST[article_cat]’, article_type=’$_POST[article_type]’, is_open=’$_POST[is_open]’, author=’$_POST[author]’, add_time=’$add_time’, author_email=’$_POST[author_email]’, keywords =’$_POST[keywords]’, file_url =’$file_url’, open_type=’$open_type’, content=’$_POST[FCKeditor1]’, link=’$_POST[link_url]’, description = ‘$_POST[description]’”, $_POST[‘id’]))

资源下载此资源仅限注册用户下载,请先
客服QQ:1427707223
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

免责声明   ⚠️ 1. 本站所有资源来源于网络收集,若资源侵犯了您的合法权益, 请来信通知我们(Email: 1427707223@qq.com),我们会及时删除,给您带来的不便,我们深表歉意! 2. 分享目的仅供大家学习和交流,若使用商业用途,请购买正版授权! 否则产生的一切后果将由下载用户自行承担! 3. 会员不得使用于非法商业用途,不得违反国家法律。否则后果自负! 4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解! 5. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需! 6. 因源码具有可复制性,一经购买 ,不得以任何形式退款。 7.更多详情请点击查看

优站网 ECSHOP教程 ecshop后台文章加上日期时间的方法 https://www.zhanceo.com/15913.html

诚乃立身之本、信为道德之基

常见问题
  • 如果付款后没有弹出下载页面,多刷新几下,有问题联系客服!
查看详情
  • 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
查看详情

相关文章

联系官方客服

为您解决烦忧 - 24小时在线 专业服务

ecshop后台文章加上日期时间的方法-海报