]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/default.php
Merge pull request #4455 from MrPetovan/task/4176-fix-undeclared-variables-2
[friendica.git] / view / theme / frio / php / default.php
index 5ea69d7c83c409ca9d20a0cc7037bb47b3a7e6e4..c78fdd265cda6634b36fd014c2d8d7b9ae198538 100644 (file)
  * @brief The default site template
  */
 ?>
-
 <!DOCTYPE html >
+<?php
 
-<?php 
-       require_once('view/theme/frio/php/frio_boot.php');
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
+use Friendica\Core\System;
+use Friendica\Model\Profile;
 
-//     $minimal = is_modal();
+require_once 'view/theme/frio/php/frio_boot.php';
 
+//     $minimal = is_modal();
+if (!isset($minimal)) {
+       $minimal = false;
+}
 ?>
-
 <html>
-<head>
-       <title><?php if(x($page,'title')) echo $page['title'] ?></title>
-       <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?> ">
-       <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
-       <script>var frio="<?php echo "view/theme/frio"; ?>";</script>
-       <?php $baseurl = $a->get_baseurl(); ?>
-       <?php $frio = "view/theme/frio"; ?>
-       <?php 
-               // Because we use minimal for modals the header and the included js stuff should be only loaded
-               // if the page is an standard page (so we don't have it twice for modals)
-               // 
-               /// @todo Think about to move js stuff in the footer
-               if(!$minimal) {
-                       if(x($page,'htmlhead')) echo $page['htmlhead'];
+       <head>
+               <title><?php if (x($page, 'title')) echo $page['title'] ?></title>
+               <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>">
+               <script  type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
+               <script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
+<?php
+       $baseurl = System::baseUrl();
+       $frio = "view/theme/frio";
+       // Because we use minimal for modals the header and the included js stuff should be only loaded
+       // if the page is an standard page (so we don't have it twice for modals)
+       //
+       /// @todo Think about to move js stuff in the footer
+       if (!$minimal && x($page, 'htmlhead')) {
+               echo $page['htmlhead'];
+       }
+       // Add the theme color meta
+       // It makes mobile Chrome UI match Frio's top bar color.
+       $uid = $a->profile_uid;
+       if (is_null($uid)) {
+               $uid = Profile::getThemeUid();
+       }
+       $schema = PConfig::get($uid, 'frio', 'schema');
+       if (($schema) && ($schema != '---')) {
+               if (file_exists('view/theme/frio/schema/' . $schema . '.php')) {
+                       $schemefile = 'view/theme/frio/schema/' . $schema . '.php';
+                       require_once $schemefile;
                }
-       ?>
-       
+       } else {
+               $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
+       }
+       if (!$nav_bg) {
+               $nav_bg = "#708fa0";
+       }
+       echo '
+               <meta name="theme-color" content="' . $nav_bg . '" />';
 
-</head>
-<?php
-if(($_SERVER['REQUEST_URI'] != "/register") && ($_SERVER['REQUEST_URI'] != "/lostpass") && ($_SERVER['REQUEST_URI'] != "/login"))
-{
-       echo"<body id=\"top\">";
-}
-else
-{
-       echo"<body id=\"top\">";
-}
+       $is_singleuser = Config::get('system','singleuser');
+       $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
 ?>
-<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
+       </head>
+       <body id="top" class="mod-<?php echo $a->module." ".$is_singleuser_class;?>">
+               <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
 <?php
-       if(x($page,'nav') && (!$minimal)){
-       echo    str_replace("~config.sitename~",get_config('config','sitename'),
-                       str_replace("~system.banner~",get_config('system','banner'),
-                       $page['nav']
-       ));};
+       if (x($page, 'nav') && !$minimal) {
+               echo str_replace(
+                       "~config.sitename~",
+                       Config::get('config', 'sitename'),
+                       str_replace(
+                               "~system.banner~",
+                               Config::get('system', 'banner'),
+                               $page['nav']
+                       )
+               );
+       };
 
        // special minimal style for modal dialogs
-       if($minimal) {
+       if ($minimal) {
 ?>
-               <section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important;display:block!important;"><?php if(x($page,'content')) echo $page['content']; ?>
+               <section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important;display:block!important;">
+                       <?php if (x($page, 'content')) echo $page['content']; ?>
                        <div id="page-footer"></div>
                </section>
-<?php  }
-       // the style for all other pages
-       else {
-?>     <main>
-               <div class="container">
-                       <div class="row">
 <?php
-                               if(($_REQUEST['pagename'] != "register") && ($_REQUEST['pagename'] != "lostpass") && ($_REQUEST['pagename'] != "login") && ($_SERVER['REQUEST_URI'] != "/"))
-                               {
-                                       echo"
-                                       <aside class=\"col-lg-3 col-md-3 offcanvas-sm offcanvas-xs\">
-                                               "; if(x($page,'aside')) echo $page['aside']; echo"
-                                               "; if(x($page,'right_aside')) echo $page['right_aside']; echo"
+       } else {
+               // the style for all other pages
+?>
+               <main>
+                       <div class="container">
+                               <div class="row">
+<?php
+                                       if ((!x($_REQUEST, 'pagename') || $_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != "/")) {
+                                               echo '
+                                       <aside class="col-lg-3 col-md-3 offcanvas-sm offcanvas-xs">';
+
+                                               if (x($page, 'aside')) {
+                                                       echo $page['aside'];
+                                               }
+
+                                               if (x($page, 'right_aside')) {
+                                                       echo $page['right_aside'];
+                                               }
+
+                                               echo '
                                        </aside>
 
-                                       <div class=\"col-lg-9 col-md-9 col-sm-12 col-xs-12\" id=\"content\">
-                                               <section class=\"sectiontop "; echo $a->argv[0]; echo "-content-wrapper\">";
-                                                               if(x($page,'content')) echo $page['content']; echo"
-                                                               <div id=\"pause\"></div> <!-- The pause/resume Ajax indicator -->
+                                       <div class="col-lg-7 col-md-7 col-sm-12 col-xs-12" id="content">
+                                               <section class="sectiontop ';
+                                               echo $a->argv[0];
+                                               echo '-content-wrapper">';
+                                               if (x($page, 'content')) {
+                                                       echo $page['content'];
+                                               }
+                                               echo '
+                                                               <div id="pause"></div> <!-- The pause/resume Ajax indicator -->
                                                </section>
                                        </div>
-                                               ";
-                               }
-                               else
-                               {
-                                       echo"
-                                       <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\" id=\"content\" style=\"margin-top:50px;\" >
-                                               "; if(x($page,'content')) echo $page['content']; echo"
+                                               ';
+                                       } else {
+                                               echo '
+                                       <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">';
+                                               if (x($page, 'content')) {
+                                                       echo $page['content'];
+                                               }
+                                               echo '
                                        </div>
-                                       ";
-                               }
+                                       ';
+                                       }
 ?>
-               
-                       </div><!--row-->
-               </div><!-- container -->
+                               </div><!--row-->
+                       </div><!-- container -->
 
-               <div id="back-to-top" title="back to top">&#8679;</div>
-       </main>
+                       <div id="back-to-top" title="back to top">&#8679;</div>
+               </main>
 
-<footer>
-<?php if(x($page,'footer')) echo $page['footer']; ?>
-<!-- Modal  -->
-<div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="plan-info" aria-hidden="true">
-       <div class="modal-dialog modal-full-screen">
-               <div class="modal-content">
-                       <div id="modal-header" class="modal-header">
-                               <button id="modal-cloase" type="button" class="close" data-dismiss="modal" aria-hidden="true">
-                                       &times;
-                               </button>
-                               <h4 id="modal-title" class="modal-title"></h4>
-                       </div>
-                       <div id="modal-body" class="modal-body">
-                               <!-- /# content goes here -->
+               <footer>
+                       <?php if (x($page, 'footer')) echo $page['footer']; ?>
+                       <!-- Modal  -->
+                       <div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
+                               <div class="modal-dialog modal-full-screen">
+                                       <div class="modal-content">
+                                               <div id="modal-header" class="modal-header">
+                                                       <button id="modal-cloase" type="button" class="close" data-dismiss="modal" aria-hidden="true">
+                                                               &times;
+                                                       </button>
+                                                       <h4 id="modal-title" class="modal-title"></h4>
+                                               </div>
+                                               <div id="modal-body" class="modal-body">
+                                                       <!-- /# content goes here -->
+                                               </div>
+                                       </div>
+                               </div>
                        </div>
-               </div>
-       </div>
-</div>
 
-<!-- Dummy div to append other div's when needed (e.g. used for js function editpost() -->
-<div id="cache-container"></div>
+                       <!-- Dummy div to append other div's when needed (e.g. used for js function editpost() -->
+                       <div id="cache-container"></div>
 
-</footer>
-<?php } ?> <!-- End of condition if $minal else the rest -->
-</body>
+               </footer>
+<?php } ?> <!-- End of condition if $minimal else the rest -->
+       </body>