Fix Notice and formatting in frio

This commit is contained in:
Hypolite Petovan 2017-12-17 10:00:40 -05:00
parent 2cfcf433a3
commit 190a765731
1 changed files with 125 additions and 113 deletions

View File

@ -6,34 +6,34 @@
?> ?>
<!DOCTYPE html > <!DOCTYPE html >
<?php <?php
use Friendica\Core\Config;
use Friendica\Core\PConfig; use Friendica\Core\Config;
use Friendica\Core\System; use Friendica\Core\PConfig;
require_once('view/theme/frio/php/frio_boot.php'); use Friendica\Core\System;
require_once 'view/theme/frio/php/frio_boot.php';
// $minimal = is_modal(); // $minimal = is_modal();
if (!isset($minimal)) { if (!isset($minimal)) {
$minimal = false; $minimal = false;
} }
?> ?>
<html> <html>
<head> <head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title> <title><?php if (x($page, 'title')) echo $page['title'] ?></title>
<meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>"> <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>">
<script type="text/javascript">var baseurl="<?php echo System::baseUrl() ?>";</script> <script type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
<script type="text/javascript">var frio="<?php echo "view/theme/frio"; ?>";</script> <script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
<?php $baseurl = System::baseUrl(); ?> <?php
<?php $frio = "view/theme/frio"; ?> $baseurl = System::baseUrl();
<?php $frio = "view/theme/frio";
// Because we use minimal for modals the header and the included js stuff should be only loaded // 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) // 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 /// @todo Think about to move js stuff in the footer
if(!$minimal) { if (!$minimal && x($page, 'htmlhead')) {
if(x($page,'htmlhead')) echo $page['htmlhead']; echo $page['htmlhead'];
} }
?>
<?php
// Add the theme color meta // Add the theme color meta
// It makes mobile Chrome UI match Frio's top bar color. // It makes mobile Chrome UI match Frio's top bar color.
$uid = $a->profile_uid; $uid = $a->profile_uid;
@ -42,9 +42,9 @@
} }
$schema = PConfig::get($uid, 'frio', 'schema'); $schema = PConfig::get($uid, 'frio', 'schema');
if (($schema) && ($schema != '---')) { if (($schema) && ($schema != '---')) {
if (file_exists('view/theme/frio/schema/'.$schema.'.php')) { if (file_exists('view/theme/frio/schema/' . $schema . '.php')) {
$schemefile = 'view/theme/frio/schema/'.$schema.'.php'; $schemefile = 'view/theme/frio/schema/' . $schema . '.php';
require_once($schemefile); require_once $schemefile;
} }
} else { } else {
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg'); $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
@ -52,64 +52,76 @@
if (!$nav_bg) { if (!$nav_bg) {
$nav_bg = "#708fa0"; $nav_bg = "#708fa0";
} }
echo '<meta name="theme-color" content="'.$nav_bg.'" />'; 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\">";
}
?> ?>
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a> </head>
<body id="top">
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
<?php <?php
if(x($page,'nav') && (!$minimal)){ if (x($page, 'nav') && !$minimal) {
echo str_replace("~config.sitename~",Config::get('config','sitename'), echo str_replace(
str_replace("~system.banner~",Config::get('system','banner'), "~config.sitename~",
Config::get('config', 'sitename'),
str_replace(
"~system.banner~",
Config::get('system', 'banner'),
$page['nav'] $page['nav']
));}; )
);
};
// special minimal style for modal dialogs // 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> <div id="page-footer"></div>
</section> </section>
<?php } <?php
} else {
// the style for all other pages // the style for all other pages
else { ?>
?> <main> <main>
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<?php <?php
if(($_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != "/")) if ((!x($_REQUEST, 'pagename') || $_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != "/")) {
{ echo '
echo" <aside class="col-lg-3 col-md-3 offcanvas-sm offcanvas-xs">';
<aside class=\"col-lg-3 col-md-3 offcanvas-sm offcanvas-xs\">
"; if(x($page,'aside')) echo $page['aside']; echo" if (x($page, 'aside')) {
"; if(x($page,'right_aside')) echo $page['right_aside']; echo" echo $page['aside'];
}
if (x($page, 'right_aside')) {
echo $page['right_aside'];
}
echo '
</aside> </aside>
<div class=\"col-lg-7 col-md-7 col-sm-12 col-xs-12\" id=\"content\"> <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\">"; <section class="sectiontop ';
if(x($page,'content')) echo $page['content']; echo" echo $a->argv[0];
<div id=\"pause\"></div> <!-- The pause/resume Ajax indicator --> echo '-content-wrapper">';
if (x($page, 'content')) {
echo $page['content'];
}
echo '
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
</section> </section>
</div> </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'];
} }
else echo '
{
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>
"; ';
} }
?> ?>
</div><!--row--> </div><!--row-->
@ -118,10 +130,10 @@ else
<div id="back-to-top" title="back to top">&#8679;</div> <div id="back-to-top" title="back to top">&#8679;</div>
</main> </main>
<footer> <footer>
<?php if(x($page,'footer')) echo $page['footer']; ?> <?php if (x($page, 'footer')) echo $page['footer']; ?>
<!-- Modal --> <!-- Modal -->
<div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"> <div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full-screen"> <div class="modal-dialog modal-full-screen">
<div class="modal-content"> <div class="modal-content">
<div id="modal-header" class="modal-header"> <div id="modal-header" class="modal-header">
@ -135,11 +147,11 @@ else
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- Dummy div to append other div's when needed (e.g. used for js function editpost() --> <!-- Dummy div to append other div's when needed (e.g. used for js function editpost() -->
<div id="cache-container"></div> <div id="cache-container"></div>
</footer> </footer>
<?php } ?> <!-- End of condition if $minal else the rest --> <?php } ?> <!-- End of condition if $minimal else the rest -->
</body> </body>