-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTopContainer.php
49 lines (45 loc) · 1.35 KB
/
TopContainer.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
<?php
/***********************************************
*
* Project: phpTransformer.com .
* File Location : .
* File Name: .
* Date Created: 00-00-2007.
* Last Modified: 00-00-2007.
* Descriptions: .
* Changes: .
* TODO: .
**** Author: Mohsen Mousawi [email protected] .
*
***********************************************/
?>
<?php if (!isset($project)){header("location: ");} ?>
<?php
global $WebSiteFullName;
$filename="Themes/$ThemeName/TopContainer.php";
if (file_exists($filename)){
//get html file
$TopCont=get_include_contents("$filename");
//replace ThemeName {Library} {Galery} {Forum} {HomePage} {Logo}
$TopCont= VarTheme("{ThemeName}",$ThemeName,$TopCont);
$TopCont= VarTheme("{Library}", Library,$TopCont);
$TopCont= VarTheme("{Galery}", Gallery,$TopCont);
$TopCont= VarTheme("{Forum}", Forum,$TopCont);
$TopCont= VarTheme("{HomePage}", HomePage,$TopCont);
$TopCont= VarTheme("{tellfriend}", tellfriend,$TopCont);
$TopCont= VarTheme("{contactus}", contactus,$TopCont);
if (file_exists("Themes/$ThemeName/logo.php")){
$Logo = get_include_contents("Themes/$ThemeName/logo.php");
$Logo = VarTheme("{WebSiteFullName}", $WebSiteFullName,$Logo);
}
else{
$Logo ='' ;
}
$TopCont= VarTheme("{Logo}",$Logo,$TopCont);
//
}
else{
$TopCont=" ";
}
//$TopCont="the top";
?>