您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS分类信息发布信息选择多久之后显示过期图标
昕汶2023-04-22 22:41:51帝国CMS教程已有人查阅
导读分类信息有效期设置,如图:第一步:增加字段gqtime类型选择日期。投稿表单替换html代码(增加字段时请留空)内容修改为:
分类信息有效期设置,如图:第一步:增加字段
<select name="gqtime" id="gqtime"><option value="<?echo date("Y-m-d",strtotime("+7day")); ?><?=DoReqValue($tbname,'gqtime',stripSlashes($r[gqtime]))?>">7天后过期</option><option value="<?echo date("Y-m-d",strtotime("+1month")); ?><?=DoReqValue($tbname,'gqtime',stripSlashes($r[gqtime]))?>">一个月后过期</option><option value="<?echo date("Y-m-d",strtotime("+3month")); ?><?=DoReqValue($tbname,'gqtime',stripSlashes($r[gqtime]))?>">三个月后过期</option><option value="<?echo date("Y-m-d",strtotime("+6month")); ?><?=DoReqValue($tbname,'gqtime',stripSlashes($r[gqtime]))?>" selected>六个月后过期</option><option value="<?echo date("Y-m-d",strtotime("+20year")); ?><?=DoReqValue($tbname,'gqtime',stripSlashes($r[gqtime]))?>">长期有效</option></select>
第二步:打开e/class/connect.php文件,找到 //栏目链接。在其上面一行加入如下代码:
//时间
$odate = round(((strtotime($r[gqtime])-strtotime(date('Y-m-d')))/86400),0);
if ($odate>0)
{
$diffTime = ''; //
}
else if ($odate==0)
{
$diffTime = '今天到期 ';
}
else
{
$diffTime = '<span class="expire">已过期</span> ';
}
$listtemp = str_replace ('[!--diffTime--]', $diffTime, $listtemp);
第三步:信息调用:
列表页调用:[!--diffTime--]
内容页引用JS:
<script language="javascript" src="images/date.js"></script>
在需要显示的地方调用:
<script>check_tdate('[!--gqtime--]')</script>
date.js 文件代码如下:
// JavaScript Document
function check_tdate(odate){
var checkArray= new Array() ;
//nowArray = odate.split(" ");
checkArray = odate.split("-");
checkDate = new Date(checkArray[0],checkArray[1],checkArray[2]);
var nowTime = new Date();// 现在时间
var the_year = nowTime.getYear();
var the_month = nowTime.getMonth() + 1;
var the_day = nowTime.getDate();
nowTime = new Date(the_year,the_month,the_day);
var thesecond = 24 * 60 * 60 *1000 ;
var diffTime = (nowTime - checkDate)/thesecond;//计算天数
if (diffTime>0)
{
myreturn ="<div style='position:absolute;z-index:100;margin-left:150px;'><img src=../../../images/guoqi.gif></div>";
}
else if (diffTime==0)
{
myreturn = '';
}
else
{
diffTime=0-diffTime;
myreturn = '';
}
//alert(myreturn);
document.write(''+myreturn+'')
}
已过期图片:
本文标签:
很赞哦! ()
相关文章
- 帝国cms自定义字段ReturnClassAddField标签截取字数的方法
- 自定义函数解决帝国cms简介截取字符出现html代码的方法
- 本地环境phpStudy搭建帝国CMS的方法
- 帝国cms提示Table 'px.***_enewspubtemp_2' doesn't exist的解决方法
- 帝国cms通过栏目ID获取栏目名称,别名,链接的方法
- 帝国CMS二次开发新浪iplookup根据ip跳转到不同域名的方法
- 帝国CMS怎么实现内容关键字替换图片alt的办法
- 帝国CMS怎么使用egetip()获取用户IP函数
- 帝国cms二次开发实现纯JS版的地区联动筛选功能
- 帝国CMS批量提取第一张图片为标题缩略图的方法
- 帝国cms自带ckeditor编辑器代码高亮的方法codesnippet风格
- 帝国CMS文章和TAG删除编号ID从1开始的方法
随机图文
-
帝国cms数据表phome_ecms_news_check新闻系统模型等待审核主表
phome_ecms_news_check新闻系统模型-待审核主表字段名字段类型解释idint(10) unsigned信息IDclassidsmallint(5) unsigned栏目IDttidsmallint(5) unsigned标题分类IDonclickint(10) -
帝国CMS新手教程安装教程系列本地测试环境搭建
帝国CMS是一套采用PHP + MySQL数据库方式运转的开放源代码软件程序,所需求的环境是:PHP,MySQL数据库,环境所需求的程序均为免费。 -
帝国CMS多值字段morevaluefield解密实例
帝国CMS多值字段morevaluevield解密,深度解析帝国CMS多值字段技巧秘诀。基本概述帝国CMS7.0新增了多值字段。像下载地址、在线地址、图片集等这样的将多个内容存放到一个字段 -
帝国CMS前段投稿获取显示IP地址
有一些需求是前段投稿功能需要自动获取投稿人的IP地址并录入数据库,故有此教程!废话不多说直接步骤来。步骤如下:1、管理数据表 - ***数据表 - 管理字段 - 添加一个 IP字段2、
留言与评论 (共有 条评论) |