X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=e2db79e1f62a8c490d8054d2f696d2c7335611ab;hb=3bca4fe2a64671d09e08346456cdfa6c12f996e9;hp=ddf5b06d8337398015598897d4df0ae591367623;hpb=1de3960e267a8d298348fbca18cf1be1f6a20f7a;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index ddf5b06d83..e2db79e1f6 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() + 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 .= "