X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=3212d2fe48c6ac339e9c7d613f62ac2ea4cedc08;hb=706444bdb22b57f18c284044bdbdaeb7610990fe;hp=f5e1edd747e95adddbbfec3ecc498efa3df6b4a6;hpb=9475383c4ffc12a08957f0e9885bab1974826f86;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index f5e1edd747..3212d2fe48 100644 --- a/src/Module/Help.php +++ b/src/Module/Help.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Module; @@ -7,30 +26,28 @@ use Friendica\Content\Nav; use Friendica\Content\Text\Markdown; 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 = DI::app(); $config = DI::config(); - $lang = $config->get('system', 'language'); + $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 .= '/'; } @@ -40,7 +57,7 @@ class Help extends BaseModule $title = basename($path); $filename = $path; $text = self::loadDocFile('doc/' . $path . '.md', $lang); - DI::page()['title'] = DI::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); @@ -85,7 +102,7 @@ class Help extends BaseModule $idNum[$level] ++; - $href = DI::baseUrl()->get() . "/help/{$filename}#{$anchor}"; + $href = "help/{$filename}#{$anchor}"; $toc .= "
  • " . strip_tags($line) . "
  • "; $id = implode("_", array_slice($idNum, 1, $level)); $line = "" . $line;