-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (57 loc) · 1.8 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/*
[seacms1.0] (C)2011-2012 seacms.net
*/
if(!file_exists("data/common.inc.php"))
{
header("Location:install/index.php");
exit();
}
require_once ("include/common.php");
require_once sea_INC."/main.class.php";
if($cfg_runmode=='0')
{
header("Location:index".$cfg_filesuffix2);
}
//if($cfg_runmode=='0' || file_exists($cfg_cmspath."index".$cfg_filesuffix2)){
// header("Location:/".$cfg_cmspath."index".$cfg_filesuffix2);
//}else{
echoIndex();
//}
function echoIndex()
{
global $cfg_iscache,$t1;
$cacheName="parsed_index";
$templatePath="/templets/".$GLOBALS['cfg_df_style']."/".$GLOBALS['cfg_df_html']."/index.html";
if($cfg_iscache){
if(chkFileCache($cacheName)){
$indexStr = getFileCache($cacheName);
}else{
$indexStr = parseIndexPart($templatePath);
setFileCache($cacheName,$indexStr);
}
}else{
$indexStr = parseIndexPart($templatePath);
}
$indexStr=str_replace("{seacms:member}",front_member(),$indexStr);
echo str_replace("{seacms:runinfo}",getRunTime($t1),$indexStr) ;
}
function parseIndexPart($templatePath)
{
global $mainClassObj;
$content=loadFile(sea_ROOT.$templatePath);
$content=$mainClassObj->parseTopAndFoot($content);
$content=replaceCurrentTypeId($content,-444);
$content=$mainClassObj->parseSelf($content);
$content=$mainClassObj->parseHistory($content);
$content=$mainClassObj->parseGlobal($content);
$content=$mainClassObj->parseAreaList($content);
$content=$mainClassObj->parseNewsAreaList($content);
$content=$mainClassObj->parseMenuList($content,"",$currentTypeId);
$content=$mainClassObj->parseVideoList($content,$currentTypeId);
$content=$mainClassObj->parseNewsList($content,$currentTypeId);
$content=$mainClassObj->parseTopicList($content);
$content=$mainClassObj->parseLinkList($content);
$content=$mainClassObj->parseIf($content);
return $content;
}