]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/default.php
@brief is removed completely
[friendica.git] / view / theme / frio / php / default.php
index b297fcb48174629de382d2609c542ec5835e8039..2f6a6bbcfba6bdbe294a86a6ccfaae886a517cd5 100644 (file)
@@ -1,15 +1,14 @@
 <?php
 /**
  * @file view/theme/frio/php/modes/default.php
- * @brief The default site template
+ * The default site template
  */
 ?>
 <!DOCTYPE html >
 <?php
 
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
-use Friendica\Core\System;
+use Friendica\DI;
 use Friendica\Model\Profile;
 
 require_once 'view/theme/frio/php/frio_boot.php';
@@ -19,17 +18,17 @@ if (!isset($minimal)) {
        $minimal = false;
 }
 
-$basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/";
+$basepath = DI::baseUrl()->getUrlPath() ? "/" . DI::baseUrl()->getUrlPath() . "/" : "/";
 $frio = "view/theme/frio";
-$view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
+$view_mode_class = (DI::mode()->isMobile() || DI::mode()->isMobile()) ? 'mobile-view' : 'desktop-view';
 $is_singleuser = Config::get('system', 'singleuser');
 $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
 ?>
 <html>
        <head>
                <title><?php if (!empty($page['title'])) echo $page['title'] ?></title>
-               <meta request="<?php echo htmlspecialchars(defaults($_REQUEST, 'pagename', '')) ?>">
-               <script  type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
+               <meta request="<?php echo htmlspecialchars($_REQUEST['pagename'] ?? '') ?>">
+               <script  type="text/javascript">var baseurl = "<?php echo DI::baseUrl(); ?>";</script>
                <script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
 <?php
                // Because we use minimal for modals the header and the included js stuff should be only loaded
@@ -43,14 +42,18 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
                // Add the theme color meta
                // It makes mobile Chrome UI match Frio's top bar color.
                $uid = Profile::getThemeUid($a);
-               $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
+               $scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema'));
                if ($scheme && is_string($scheme) && $scheme != '---') {
                        if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
                                $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
                                require_once $schemefile;
                        }
                } else {
-                       $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
+                       $nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg');
+               }
+
+               if (empty($nav_bg)) {
+                       $nav_bg = Config::get('frio', 'nav_bg');
                }
 
                if (empty($nav_bg) || !is_string($nav_bg)) {
@@ -61,7 +64,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
 ?>
        </head>
 
-       <body id="top" class="mod-<?php echo $a->module . " " . $is_singleuser_class . " " . $view_mode_class;?>">
+       <body id="top" class="mod-<?php echo DI::module()->getName() . " " . $is_singleuser_class . " " . $view_mode_class;?>">
                <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
 <?php
        if (!empty($page['nav']) && !$minimal) {
@@ -79,7 +82,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
        // special minimal style for modal dialogs
        if ($minimal) {
 ?>
-        <!-- <?php echo __FILE__ ?> -->
+               <!-- <?php echo __FILE__ ?> -->
                <section class="minimal">
                        <?php if (!empty($page['content'])) echo $page['content']; ?>
                        <div id="page-footer"></div>
@@ -137,7 +140,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
                </main>
 
                <footer>
-                       <?php echo defaults($page, 'footer', ''); ?>
+                       <?php echo $page['footer'] ?? ''; ?>
                </footer>
 <?php } ?> <!-- End of condition if $minimal else the rest -->
        </body>