friendica/mod/help.php

103 lines
2.4 KiB
PHP
Raw Normal View History

2011-04-13 16:07:21 +02:00
<?php
require_once('library/markdown.php');
2011-04-13 16:07:21 +02: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(App &$a) {
nav_set_selected('help');
2011-04-13 16:07:21 +02:00
global $lang;
$text = '';
if ($a->argc > 1) {
2015-12-26 16:06:38 +01:00
$path = '';
2015-12-28 03:17:55 +01:00
// looping through the argv keys bigger than 0 to build
// a path relative to /help
2015-12-26 16:06:38 +01:00
for($x = 1; $x < argc(); $x ++) {
if(strlen($path))
$path .= '/';
$path .= argv($x);
}
$title = basename($path);
$filename = $path;
2015-12-26 16:06:38 +01:00
$text = load_doc_file('doc/' . $path . '.md');
$a->page['title'] = t('Help:') . ' ' . str_replace('-', ' ', notags($title));
2011-04-14 11:34:43 +02:00
}
$home = load_doc_file('doc/Home.md');
if (!$text) {
$text = $home;
$filename = "Home";
2011-04-14 11:34:43 +02:00
$a->page['title'] = t('Help');
} else {
$a->page['aside'] = Markdown($home);
2011-04-13 16:07:21 +02:00
}
if (!strlen($text)) {
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
$tpl = get_markup_template("404.tpl");
return replace_macros($tpl, array(
'$message' => t('Page not found.')
));
}
$html = Markdown($text);
2015-12-28 10:21:34 +01:00
if ($filename !== "Home") {
// create TOC but not for home
$lines = explode("\n", $html);
2016-02-12 09:26:42 +01:00
$toc="<style>aside ul {padding-left: 1em;}aside h1{font-size:2em}</style><h2>TOC</h2><ul id='toc'>";
2015-12-28 10:21:34 +01:00
$lastlevel=1;
$idnum = array(0,0,0,0,0,0,0);
foreach($lines as &$line){
if (substr($line,0,2)=="<h") {
$level = substr($line,2,1);
if ($level!="r") {
$level = intval($level);
if ($level<$lastlevel) {
for($k=$level;$k<$lastlevel; $k++) $toc.="</ul>";
for($k=$level+1;$k<count($idnum);$k++) $idnum[$k]=0;
}
if ($level>$lastlevel) $toc.="<ul>";
$idnum[$level]++;
$id = implode("_", array_slice($idnum,1,$level));
$href = App::get_baseurl()."/help/{$filename}#{$id}";
2015-12-28 10:21:34 +01:00
$toc .= "<li><a href='{$href}'>".strip_tags($line)."</a></li>";
$line = "<a name='{$id}'></a>".$line;
$lastlevel = $level;
}
}
}
2016-02-12 09:26:42 +01:00
for($k=0;$k<$lastlevel; $k++) $toc.="</ul>";
2015-12-28 10:21:34 +01:00
$html = implode("\n",$lines);
2015-12-28 10:21:34 +01:00
$a->page['aside'] = $toc.$a->page['aside'];
}
$html = "
<style>
.md_warning {
padding: 1em; border: #ff0000 solid 2px;
background-color: #f9a3a3; color: #ffffff;
}
</style>".$html;
return $html;
}