2011-04-13 16:07:21 +02:00
|
|
|
<?php
|
2018-01-15 20:51:56 +01:00
|
|
|
/**
|
|
|
|
* @file mod/help.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-01-15 00:59:08 +01:00
|
|
|
use Friendica\Content\Text\Markdown;
|
2018-01-22 13:29:50 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 06:07:00 +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
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function help_content(App $a) {
|
2015-02-23 23:56:44 +01:00
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('help');
|
2011-04-13 16:07:21 +02:00
|
|
|
|
|
|
|
global $lang;
|
|
|
|
|
|
|
|
$text = '';
|
|
|
|
|
2012-11-09 09:56:45 +01:00
|
|
|
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
|
2017-03-21 17:02:59 +01:00
|
|
|
for($x = 1; $x < argc(); $x ++) {
|
|
|
|
if(strlen($path))
|
2015-12-26 16:06:38 +01:00
|
|
|
$path .= '/';
|
|
|
|
$path .= argv($x);
|
|
|
|
}
|
|
|
|
$title = basename($path);
|
2015-12-28 10:13:28 +01:00
|
|
|
$filename = $path;
|
2015-12-26 16:06:38 +01:00
|
|
|
$text = load_doc_file('doc/' . $path . '.md');
|
2018-01-22 13:29:50 +01:00
|
|
|
$a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', notags($title));
|
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;
|
2015-12-28 10:13:28 +01:00
|
|
|
$filename = "Home";
|
2018-01-22 13:29:50 +01:00
|
|
|
$a->page['title'] = L10n::t('Help');
|
2012-11-09 09:56:45 +01:00
|
|
|
} else {
|
2018-01-15 00:59:08 +01:00
|
|
|
$a->page['aside'] = Markdown::convert($home, false);
|
2011-04-13 16:07:21 +02:00
|
|
|
}
|
2012-11-09 09:56:45 +01:00
|
|
|
|
|
|
|
if (!strlen($text)) {
|
2018-01-22 13:29:50 +01:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . L10n::t('Not Found'));
|
2011-09-19 11:52:32 +02:00
|
|
|
$tpl = get_markup_template("404.tpl");
|
2018-01-15 14:05:12 +01:00
|
|
|
return replace_macros($tpl, [
|
2018-01-22 13:29:50 +01:00
|
|
|
'$message' => L10n::t('Page not found.')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-08-16 05:16:00 +02:00
|
|
|
}
|
2015-02-23 23:56:44 +01:00
|
|
|
|
2018-01-15 00:59:08 +01:00
|
|
|
$html = Markdown::convert($text, false);
|
2015-12-28 10:13:28 +01:00
|
|
|
|
2015-12-28 10:21:34 +01:00
|
|
|
if ($filename !== "Home") {
|
|
|
|
// create TOC but not for home
|
|
|
|
$lines = explode("\n", $html);
|
2018-04-25 23:30:56 +02:00
|
|
|
$toc="<h2>TOC</h2><ul id='toc'>";
|
2015-12-28 10:21:34 +01:00
|
|
|
$lastlevel=1;
|
2018-01-15 14:05:12 +01:00
|
|
|
$idnum = [0,0,0,0,0,0,0];
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($lines as &$line){
|
2015-12-28 10:21:34 +01:00
|
|
|
if (substr($line,0,2)=="<h") {
|
|
|
|
$level = substr($line,2,1);
|
|
|
|
if ($level!="r") {
|
|
|
|
$level = intval($level);
|
|
|
|
if ($level<$lastlevel) {
|
2017-03-21 17:02:59 +01:00
|
|
|
for($k=$level;$k<$lastlevel; $k++) $toc.="</ul>";
|
|
|
|
for($k=$level+1;$k<count($idnum);$k++) $idnum[$k]=0;
|
2015-12-28 10:21:34 +01:00
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($level>$lastlevel) $toc.="<ul>";
|
2015-12-28 10:21:34 +01:00
|
|
|
$idnum[$level]++;
|
|
|
|
$id = implode("_", array_slice($idnum,1,$level));
|
2017-08-26 09:32:10 +02:00
|
|
|
$href = System::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;
|
2015-12-28 10:13:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-21 17:02:59 +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:13:28 +01:00
|
|
|
|
2018-04-25 23:30:56 +02:00
|
|
|
$a->page['aside'] = '<div class="help-aside-wrapper widget"><div id="toc-wrapper">' . $toc . '</div>' . $a->page['aside'] . '</div>';
|
2015-12-28 10:21:34 +01:00
|
|
|
}
|
2015-12-28 10:13:28 +01:00
|
|
|
|
2012-11-09 09:56:45 +01:00
|
|
|
return $html;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-08-17 18:36:24 +02:00
|
|
|
}
|