]> git.mxchange.org Git - friendica.git/blobdiff - mod/help.php
Added Unittests for cache
[friendica.git] / mod / help.php
index b9c2bae3a0206b643b2fe50e2254bad684d9c11a..981fe97f70759103fa16ab8c50dcbadb8f316d57 100644 (file)
@@ -5,6 +5,7 @@
 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')) {
@@ -44,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.')
                                ]);
        }
 
@@ -68,7 +69,7 @@ function help_content(App $a) {
        if ($filename !== "Home") {
                // create TOC but not for home
                $lines = explode("\n", $html);
-               $toc="<style>aside ul {padding-left: 1em;}aside h1{font-size:2em}</style><h2>TOC</h2><ul id='toc'>";
+               $toc="<h2>TOC</h2><ul id='toc'>";
                $lastlevel=1;
                $idnum = [0,0,0,0,0,0,0];
                foreach($lines as &$line){
@@ -93,16 +94,9 @@ function help_content(App $a) {
                for($k=0;$k<$lastlevel; $k++) $toc.="</ul>";
                $html = implode("\n",$lines);
 
-               $a->page['aside'] = '<section class="help-aside-wrapper">' . $toc . $a->page['aside'] . '</section>';
+               $a->page['aside'] = '<div class="help-aside-wrapper widget"><div id="toc-wrapper">' . $toc . '</div>' . $a->page['aside'] . '</div>';
        }
 
-       $html = "
-               <style>
-               .md_warning {
-                       padding: 1em; border: #ff0000 solid 2px;
-                       background-color: #f9a3a3; color: #ffffff;
-               }
-               </style>".$html;
        return $html;
 
 }