2011-04-13 16:07:21 +02:00
|
|
|
<?php
|
2012-11-09 09:56:45 +01:00
|
|
|
require_once('library/markdown.php');
|
2011-04-13 16:07:21 +02:00
|
|
|
|
2012-11-09 09:56:45 +01:00
|
|
|
if (!function_exists('load_doc_file')) {
|
|
|
|
|
|
|
|
function load_doc_file($s) {
|
|
|
|
global $lang;
|
|
|
|
if (!isset($lang))
|
|
|
|
$lang = 'en';
|
|
|
|
$b = basename($s);
|
|
|
|
$d = dirname($s);
|
|
|
|
if (file_exists("$d/$lang/$b"))
|
|
|
|
return file_get_contents("$d/$lang/$b");
|
|
|
|
if (file_exists($s))
|
|
|
|
return file_get_contents($s);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-04-13 16:07:21 +02:00
|
|
|
|
|
|
|
function help_content(&$a) {
|
2015-02-23 23:56:44 +01:00
|
|
|
|
2011-08-17 18:36:24 +02:00
|
|
|
nav_set_selected('help');
|
2011-04-13 16:07:21 +02:00
|
|
|
|
|
|
|
global $lang;
|
|
|
|
|
|
|
|
$text = '';
|
|
|
|
|
2012-11-09 09:56:45 +01:00
|
|
|
if ($a->argc > 1) {
|
2011-04-13 16:07:21 +02:00
|
|
|
$text = load_doc_file('doc/' . $a->argv[1] . '.md');
|
2012-11-09 09:56:45 +01:00
|
|
|
$a->page['title'] = t('Help:') . ' ' . str_replace('-', ' ', notags($a->argv[1]));
|
2011-04-14 11:34:43 +02:00
|
|
|
}
|
2012-11-09 09:56:45 +01:00
|
|
|
$home = load_doc_file('doc/Home.md');
|
|
|
|
if (!$text) {
|
|
|
|
$text = $home;
|
2011-04-14 11:34:43 +02:00
|
|
|
$a->page['title'] = t('Help');
|
2012-11-09 09:56:45 +01:00
|
|
|
} else {
|
|
|
|
$a->page['aside'] = Markdown($home);
|
2011-04-13 16:07:21 +02:00
|
|
|
}
|
2012-11-09 09:56:45 +01:00
|
|
|
|
|
|
|
if (!strlen($text)) {
|
2011-08-16 05:16:00 +02:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
|
2011-09-19 11:52:32 +02:00
|
|
|
$tpl = get_markup_template("404.tpl");
|
|
|
|
return replace_macros($tpl, array(
|
2012-11-09 09:56:45 +01:00
|
|
|
'$message' => t('Page not found.')
|
|
|
|
));
|
2011-08-16 05:16:00 +02:00
|
|
|
}
|
2015-02-23 23:56:44 +01:00
|
|
|
|
2012-11-09 09:56:45 +01:00
|
|
|
$html = Markdown($text);
|
|
|
|
$html = "<style>.md_warning { padding: 1em; border: #ff0000 solid 2px; background-color: #f9a3a3; color: #ffffff;</style>".$html;
|
|
|
|
return $html;
|
2015-02-23 23:56:44 +01:00
|
|
|
|
2011-08-17 18:36:24 +02:00
|
|
|
}
|