X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=3212d2fe48c6ac339e9c7d613f62ac2ea4cedc08;hb=8b02c285472ea28002cf9c8924e2885dd207ccd8;hp=7c1ecd74650b480661adbbf522da1cd30a7ed932;hpb=fceb4f3823c13675ffd2db8bea64af6aa7fc5406;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index 7c1ecd7465..3212d2fe48 100644 --- a/src/Module/Help.php +++ b/src/Module/Help.php @@ -1,56 +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 = 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 .= '/'; } - $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)) { @@ -67,34 +83,32 @@ class Help extends BaseModule $idNum = [0, 0, 0, 0, 0, 0, 0]; foreach ($lines as &$line) { $matches = []; - foreach ($lines as &$line) { - if (preg_match('#([^<]+?)#i', $line, $matches)) { - $level = $matches[1]; - $anchor = urlencode($matches[2]); - if ($level < $lastLevel) { - for ($k = $level; $k < $lastLevel; $k++) { - $toc .= ""; - } - - for ($k = $level + 1; $k < count($idNum); $k++) { - $idNum[$k] = 0; - } + if (preg_match('#([^<]+?)#i', $line, $matches)) { + $level = $matches[1]; + $anchor = urlencode($matches[2]); + if ($level < $lastLevel) { + for ($k = $level; $k < $lastLevel; $k++) { + $toc .= ""; } - if ($level > $lastLevel) { - $toc .= "
    • "; + for ($k = $level + 1; $k < count($idNum); $k++) { + $idNum[$k] = 0; } + } - $idNum[$level] ++; + if ($level > $lastLevel) { + $toc .= "
      • "; + } - $href = $a->getBaseURL() . "/help/{$filename}#{$anchor}"; - $toc .= "
      • " . strip_tags($line) . "
      • "; - $id = implode("_", array_slice($idNum, 1, $level)); - $line = "" . $line; - $line = "" . $line; + $idNum[$level] ++; - $lastLevel = $level; - } + $href = "help/{$filename}#{$anchor}"; + $toc .= "
      • " . strip_tags($line) . "
      • "; + $id = implode("_", array_slice($idNum, 1, $level)); + $line = "" . $line; + $line = "" . $line; + + $lastLevel = $level; } } @@ -104,7 +118,7 @@ class Help extends BaseModule $html = implode("\n", $lines); - $a->page['aside'] = '
        ' . $toc . '
        ' . $a->page['aside'] . '
        '; + DI::page()['aside'] = '
        ' . $toc . '
        ' . DI::page()['aside'] . '
        '; } return $html;