X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHelp.php;h=a65bff6eaec95ecfc517a84bc7176a8d62f6c8c9;hb=f096b8c8794cdda681d8d307d40edcc01848e5ee;hp=b18500a1096907f45b4e6d5ac0c7d0c054ad15fb;hpb=f2da1c5ab981ad273961eec86a8efdb5e4f01b5c;p=friendica.git diff --git a/src/Module/Help.php b/src/Module/Help.php index b18500a109..a65bff6eae 100644 --- a/src/Module/Help.php +++ b/src/Module/Help.php @@ -1,11 +1,29 @@ . + * + */ 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; @@ -41,14 +59,14 @@ class Help extends BaseModule $title = basename($path); $filename = $path; $text = self::loadDocFile('doc/' . $path . '.md', $lang); - DI::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"; - DI::page()['title'] = L10n::t('Help'); + DI::page()['title'] = DI::l10n()->t('Help'); } else { DI::page()['aside'] = Markdown::convert($home, false); } @@ -67,34 +85,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 = DI::baseUrl()->get() . "/help/{$filename}#{$anchor}"; - $toc .= "
      • " . strip_tags($line) . "
      • "; - $id = implode("_", array_slice($idNum, 1, $level)); - $line = "" . $line; - $line = "" . $line; + $idNum[$level] ++; - $lastLevel = $level; - } + $href = DI::baseUrl()->get() . "/help/{$filename}#{$anchor}"; + $toc .= "
      • " . strip_tags($line) . "
      • "; + $id = implode("_", array_slice($idNum, 1, $level)); + $line = "" . $line; + $line = "" . $line; + + $lastLevel = $level; } }