Use template home.tpl for mod/home
This commit is contained in:
parent
a526573075
commit
0aafdab810
30
mod/home.php
30
mod/home.php
|
@ -24,8 +24,6 @@ function home_init(App $a) {
|
||||||
if(! function_exists('home_content')) {
|
if(! function_exists('home_content')) {
|
||||||
function home_content(App $a) {
|
function home_content(App $a) {
|
||||||
|
|
||||||
$o = '';
|
|
||||||
|
|
||||||
if (x($_SESSION,'theme')) {
|
if (x($_SESSION,'theme')) {
|
||||||
unset($_SESSION['theme']);
|
unset($_SESSION['theme']);
|
||||||
}
|
}
|
||||||
|
@ -33,21 +31,31 @@ function home_content(App $a) {
|
||||||
unset($_SESSION['mobile-theme']);
|
unset($_SESSION['mobile-theme']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @TODO No absolute path used, maybe risky (security)
|
$customhome = False;
|
||||||
if (file_exists('home.html')) {
|
$defaultheader = '<h1>'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'</h1>';
|
||||||
if (file_exists('home.css')) {
|
|
||||||
|
$homefilepath = $a->basepath . '/home.html';
|
||||||
|
$cssfilepath = $a->basepath . '/home.css';
|
||||||
|
if (file_exists($homefilepath)) {
|
||||||
|
$customhome = $homefilepath;
|
||||||
|
if (file_exists($cssfilepath)) {
|
||||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.System::baseUrl().'/home.css'.'" media="all" />';
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.System::baseUrl().'/home.css'.'" media="all" />';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$o .= file_get_contents('home.html');
|
$login = Login::form($a->query_string, $a->config['register_policy'] == REGISTER_CLOSED ? 0 : 1);
|
||||||
} else {
|
|
||||||
$o .= '<h1>'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'</h1>';
|
|
||||||
}
|
|
||||||
|
|
||||||
$o .= Login::form($a->query_string, $a->config['register_policy'] == REGISTER_CLOSED ? 0 : 1);
|
$content = '';
|
||||||
|
call_hooks("home_content",$content);
|
||||||
|
|
||||||
|
|
||||||
call_hooks("home_content",$o);
|
$tpl = get_markup_template('home.tpl');
|
||||||
|
return replace_macros($tpl, [
|
||||||
|
'$defaultheader' => $defaultheader,
|
||||||
|
'$customhome' => $customhome,
|
||||||
|
'$login' => $login,
|
||||||
|
'$content' => $content
|
||||||
|
]);
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
|
|
||||||
|
|
14
view/templates/home.tpl
Normal file
14
view/templates/home.tpl
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
{{* custom content from hook will replace everything. *}}
|
||||||
|
{{if $content != '' }}
|
||||||
|
{{$content}}
|
||||||
|
{{else}}
|
||||||
|
|
||||||
|
{{if $customhome != false }}
|
||||||
|
{{include file="$customhome"}}
|
||||||
|
{{else}}
|
||||||
|
{{$defaultheader}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{$login}}
|
||||||
|
{{/if}}
|
Loading…
Reference in a new issue