friendica/mod/home.php

67 lines
1.5 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
/**
* @file mod/home.php
*/
use Friendica\App;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Module\Login;
if(! function_exists('home_init')) {
function home_init(App $a) {
2010-07-02 01:48:07 +02:00
$ret = [];
Addon::callHooks('home_init',$ret);
2011-12-15 10:08:19 +01:00
if (local_user() && ($a->user['nickname'])) {
goaway(System::baseUrl()."/network");
}
if (strlen(Config::get('system','singleuser'))) {
goaway(System::baseUrl()."/profile/" . Config::get('system','singleuser'));
}
2010-09-17 14:19:56 +02:00
2010-07-02 01:48:07 +02:00
}}
if(! function_exists('home_content')) {
function home_content(App $a) {
2010-09-17 14:19:56 +02:00
if (x($_SESSION,'theme')) {
unset($_SESSION['theme']);
}
if (x($_SESSION,'mobile-theme')) {
unset($_SESSION['mobile-theme']);
}
2018-01-17 17:27:27 +01:00
$customhome = false;
$defaultheader = '<h1>'.((x($a->config,'sitename')) ? L10n::t("Welcome to %s", $a->config['sitename']) : "").'</h1>';
2018-01-17 13:27:41 +01:00
$homefilepath = $a->basepath . "/home.html";
$cssfilepath = $a->basepath . "/home.css";
2018-01-17 13:27:41 +01:00
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" />';
}
2018-01-17 13:27:41 +01:00
}
2018-01-17 13:27:41 +01:00
$login = Login::form($a->query_string, $a->config['register_policy'] == REGISTER_CLOSED ? 0 : 1);
2018-01-17 13:27:41 +01:00
$content = '';
Addon::callHooks("home_content",$content);
2010-11-19 00:06:33 +01:00
2018-01-17 13:27:41 +01:00
$tpl = get_markup_template('home.tpl');
return replace_macros($tpl, [
'$defaultheader' => $defaultheader,
'$customhome' => $customhome,
'$login' => $login,
'$content' => $content
]);
2010-07-02 01:48:07 +02:00
return $o;
}}