]> git.mxchange.org Git - friendica.git/blobdiff - mod/help.php
Decrease scope of query in Profile::getEventsReminderHTML
[friendica.git] / mod / help.php
index ab5223a3970a133d6bfa0f4143f097ea28183928..e4442f7ca3608e909e07fd72eb7611f2f0ed23eb 100644 (file)
@@ -1,7 +1,11 @@
 <?php
-
+/**
+ * @file mod/help.php
+ */
 use Friendica\App;
+use Friendica\Content\Nav;
 use Friendica\Content\Text\Markdown;
+use Friendica\Core\L10n;
 use Friendica\Core\System;
 
 if (!function_exists('load_doc_file')) {
@@ -23,7 +27,7 @@ if (!function_exists('load_doc_file')) {
 
 function help_content(App $a) {
 
-       nav_set_selected('help');
+       Nav::setSelected('help');
 
        global $lang;
 
@@ -41,22 +45,22 @@ function help_content(App $a) {
                $title = basename($path);
                $filename = $path;
                $text = load_doc_file('doc/' . $path . '.md');
-               $a->page['title'] = t('Help:') . ' ' . str_replace('-', ' ', notags($title));
+               $a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', notags($title));
        }
        $home = load_doc_file('doc/Home.md');
        if (!$text) {
                $text = $home;
                $filename = "Home";
-               $a->page['title'] = t('Help');
+               $a->page['title'] = L10n::t('Help');
        } else {
                $a->page['aside'] = Markdown::convert($home, false);
        }
 
        if (!strlen($text)) {
-               header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
+               header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . L10n::t('Not Found'));
                $tpl = get_markup_template("404.tpl");
                return replace_macros($tpl, [
-                                       '$message' => t('Page not found.')
+                                       '$message' => L10n::t('Page not found.')
                                ]);
        }