X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=3212d2fe48c6ac339e9c7d613f62ac2ea4cedc08;hb=706444bdb22b57f18c284044bdbdaeb7610990fe;hp=3b3ce58704663cc6422e5da1284fafe04d5e0224;hpb=f2c31ef1c0e92208b58d22791fc72d0ad3e3d6ae;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index 3b3ce58704..3212d2fe48 100644 --- a/src/Module/Help.php +++ b/src/Module/Help.php @@ -1,55 +1,72 @@ . + * + */ 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; /** * Shows the friendica help based on the /doc/ directory */ class Help extends BaseModule { - public static function content(array $parameters = []) + protected function content(array $request = []): string { Nav::setSelected('help'); $text = ''; $filename = ''; - $a = self::getApp(); - $config = $a->getConfig(); - $lang = $config->get('system', 'language'); + $config = DI::config(); + $lang = DI::session()->get('language', $config->get('system', 'language')); // @TODO: Replace with parameter from router - if ($a->argc > 1) { + if (DI::args()->getArgc() > 1) { $path = ''; // looping through the argv keys bigger than 0 to build // a path relative to /help - for ($x = 1; $x < $a->argc; $x ++) { + for ($x = 1; $x < DI::args()->getArgc(); $x ++) { if (strlen($path)) { $path .= '/'; } - $path .= $a->getArgumentValue($x); + $path .= DI::args()->get($x); } $title = basename($path); $filename = $path; $text = self::loadDocFile('doc/' . $path . '.md', $lang); - $a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', Strings::escapeTags($title)); + DI::page()['title'] = DI::l10n()->t('Help:') . ' ' . str_replace('-', ' ', $title); } $home = self::loadDocFile('doc/Home.md', $lang); if (!$text) { $text = $home; $filename = "Home"; - $a->page['title'] = L10n::t('Help'); + DI::page()['title'] = DI::l10n()->t('Help'); } else { - $a->page['aside'] = Markdown::convert($home, false); + DI::page()['aside'] = Markdown::convert($home, false); } if (!strlen($text)) { @@ -65,31 +82,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 .= "