X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=a65bff6eaec95ecfc517a84bc7176a8d62f6c8c9;hb=f096b8c8794cdda681d8d307d40edcc01848e5ee;hp=04c4828526a7d01e4adc5320886e0112cd1b632c;hpb=14d8c12130672bae9ff2e86dd9d7cf669b743939;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index 04c4828526..a65bff6eae 100644 --- a/src/Module/Help.php +++ b/src/Module/Help.php @@ -1,11 +1,30 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; use Friendica\Content\Nav; use Friendica\Content\Text\Markdown; -use Friendica\Core\L10n; +use Friendica\DI; use Friendica\Network\HTTPException; use Friendica\Util\Strings; @@ -14,42 +33,42 @@ use Friendica\Util\Strings; */ class Help extends BaseModule { - public static function content() + public static function content(array $parameters = []) { Nav::setSelected('help'); $text = ''; $filename = ''; - $app = self::getApp(); - $config = $app->getConfig(); + $a = DI::app(); + $config = DI::config(); $lang = $config->get('system', 'language'); // @TODO: Replace with parameter from router - if ($app->argc > 1) { + if ($a->argc > 1) { $path = ''; // looping through the argv keys bigger than 0 to build // a path relative to /help - for ($x = 1; $x < $app->argc; $x ++) { + for ($x = 1; $x < $a->argc; $x ++) { if (strlen($path)) { $path .= '/'; } - $path .= $app->getArgumentValue($x); + $path .= DI::args()->get($x); } $title = basename($path); $filename = $path; $text = self::loadDocFile('doc/' . $path . '.md', $lang); - $app->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', Strings::escapeTags($title)); + DI::page()['title'] = DI::l10n()->t('Help:') . ' ' . str_replace('-', ' ', Strings::escapeTags($title)); } $home = self::loadDocFile('doc/Home.md', $lang); if (!$text) { $text = $home; $filename = "Home"; - $app->page['title'] = L10n::t('Help'); + DI::page()['title'] = DI::l10n()->t('Help'); } else { - $app->page['aside'] = Markdown::convert($home, false); + DI::page()['aside'] = Markdown::convert($home, false); } if (!strlen($text)) { @@ -65,31 +84,33 @@ class Help extends BaseModule $lastLevel = 1; $idNum = [0, 0, 0, 0, 0, 0, 0]; foreach ($lines as &$line) { - if (substr($line, 0, 2) == "([^<]+?)#i', $line, $matches)) { + $level = $matches[1]; + $anchor = urlencode($matches[2]); + if ($level < $lastLevel) { + for ($k = $level; $k < $lastLevel; $k++) { + $toc .= ""; } - if ($level > $lastLevel) { - $toc .= "