maccms怎么做模板配置后台管理中心(二)
我这边的做法思路比较简单,因为macccms的程序配置功能很多,基本上除了广告位之外,其他的配置都很齐全,所以,我建立主题管理后台主要还是为了广告的配置,如图
我简单的获取input里面的选项存储到txt文件里面,然后建立一个mydata.php,是为了输出参数提供给前端模板
<?php
function g(){
$my = parse_ini_file(str_replace("\\", "/", realpath(dirname(__FILE__) . "/../../")) . "/info.ini", true);
$myfile = $my["template"] . "/" . $my["theme"] . "/";
$fileshot = ''.$myfile.'admin/message.txt';
if(file_exists($fileshot)) {
$txtcache = file_get_contents($fileshot);
$txtcache = rtrim($txtcache, "[n]");
$arrmess = explode("[n]", $txtcache);
foreach($arrmess as $m) {
list($favi,$topban,$daysta,$htmlys,$piczai,$topad,$siada,$siadb,$neada,$neadb) = explode("||", $m);
$var=array();
$var[1]=$favi;
$var[2]=$topban;
$var[3]=$daysta;
$var[4]=$htmlys;
$var[5]=$piczai;
$var[6]=htmlspecialchars_decode($topad);
$var[7]=htmlspecialchars_decode($siada);
$var[8]=htmlspecialchars_decode($siadb);
$var[9]=htmlspecialchars_decode($neada);
$var[10]=htmlspecialchars_decode($neadb);
}
}
return $var;
}
读取存储的文件,返回给数组$var,然后在html公用文件里面建立一个data.html,这里注意了,上面是php文件,这里是html文件
参考代码为:
<?php
$incPath = dirname(APP_PATH);
$incPath .= ''.$maccms[path_tpl].'admin/data/mydata.php';
require_once($incPath);
if(!isset($szb)){
$szb = g();
}
?>
这里是require_once上面设置好的连接php,并且返回数组的值给$szb
那么前端的调用方式,可以这样:
{if $szb[2]}}{$szb[2]});}{/if}
判断$szb[2]}是否为空,如果不为空,则输出显示
发表评论
热门文章
Spimes主题专为博客、自媒体、资讯类的网站设计....
一款个人简历主题,可以简单搭建一下,具体也比较简单....
仿制主题,Typecho博客主题,昼夜双版设计,可....
用于作品展示、资源下载,行业垂直性网站、个人博客,....
热评文章
最新评论
Z.
11月29日
博主你好,Deng插件,这个点击不进去,提示这个(Warning: require_once(/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php): failed to open stream: No such file or directory in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26
Fatal error: require_once(): Failed opening required '/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php' (include_path='.:/www/server/php/72/lib/php') in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26)
点都德
2天前
:喷::喜欢::怒::黑线: