SeaCMS自定义地图页模板文件和生成静态文件名
编辑 /include/mkhtml.func.php
文件第43行,找到:
function makeAllmovie($by='video')
{
global $mainClassObj;
switch ($by){
case 'video':
$templatePath="/templets/".$GLOBALS['cfg_df_style']."/".$GLOBALS['cfg_df_html']."/map.html";
break;
修改为
function makeAllmovie($by='video')
{
global $mainClassObj;
switch ($by){
case 'video':
$templatePath="/templets/".$GLOBALS['cfg_df_style']."/".$GLOBALS['cfg_df_html']."/self_all.html";
break;
继续编辑 /include/mkhtml.func.php
文件第71行,找到:
case 'video':
$allmoviename=sea_ROOT."/allmovie".getfileSuffix();
createTextFile($content,$allmoviename);
return "地图页生成完毕 <a target='_blank' href='../allmovie".getfileSuffix()."'><font color=red>浏览地图页</font></a><br>";
break;
修改为:
case 'video':
$allmoviename=sea_ROOT."/all".getfileSuffix();
createTextFile($content,$allmoviename);
return "地图页生成完毕 <a target='_blank' href='../all".getfileSuffix()."'><font color=red>浏览地图页</font></a><br>";
break;
更新缓存并重新生成即可