]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/standard.php
[frio] import contacts form was missing the enctype
[friendica.git] / view / theme / frio / php / standard.php
index bed948b9fd1021c4b58d393f18f0c469945d28bc..5d269fd9535e85d70f176bf7b5e6c2b9a09ebdd9 100644 (file)
@@ -1,8 +1,29 @@
 <?php
 /**
- * @file view/theme/frio/php/modes/default.php
- * @brief The default site template
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * The default site template
  */
+
+use Friendica\DI;
+
+$frio = 'view/theme/frio';
+
 ?>
 <!DOCTYPE html >
 <html>
        <title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
        <meta name="viewport" content="initial-scale=1.0">
        <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>">
-       <script type="text/javascript">var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script>
-       <script type="text/javascript">var frio="<?php echo "view/theme/frio"; ?>";</script>
-       <?php $baseurl = Friendica\DI::baseUrl(); ?>
-       <?php $frio = "view/theme/frio"; ?>
+       <script type="text/javascript">var baseurl="<?php echo DI::baseUrl() ?>";</script>
+       <script type="text/javascript">var frio="<?php echo $frio; ?>";</script>
        <?php if(!empty($page['htmlhead'])) echo $page['htmlhead']; ?>
 </head>
 <body id="top">
-<?php if($_SERVER['REQUEST_URI'] == "/"){header('Location: /login');} ?>
-<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
+<?php if($_SERVER['REQUEST_URI'] == '/'){header('Location: /login');} ?>
+<a href="#content" class="sr-only sr-only-focusable"><?php echo DI::l10n()->t('Skip to main content'); ?></a>
 <?php
        if(!empty($page['nav'])) {
-       echo    str_replace("~config.sitename~",Friendica\Core\Config::get('config','sitename'),
-                       str_replace("~system.banner~",Friendica\Core\Config::get('system','banner'),
+       echo    str_replace('~config.sitename~', DI::config()->get('config','sitename'),
+                       str_replace('~system.banner~', DI::config()->get('system','banner'),
                        $page['nav']
        ));};
 ?>
                <div class="container">
                        <div class="row">
 <?php
-                                       echo"
-                                       <aside class=\"col-lg-3 col-md-3 hidden-sm hidden-xs\">
-                                               "; if(!empty($page['aside'])) echo $page['aside']; echo"
-                                               "; if(!empty($page['right_aside'])) echo $page['right_aside']; echo"
-                                               "; include('includes/photo_side.php'); echo"
+                                       echo '
+                                       <aside class="col-lg-3 col-md-3 hidden-sm hidden-xs">
+                                               '; if(!empty($page['aside'])) echo $page['aside']; echo'
+                                               '; if(!empty($page['right_aside'])) echo $page['right_aside']; echo'
+                                               '; include('includes/photo_side.php'); echo'
                                        </aside>
 
-                                       <div class=\"col-lg-8 col-md-8 col-sm-12 col-xs-12\" id=\"content\">
-                                               <section class=\"sectiontop\">
-                                                               <div class=\"panel "; echo $a->argv[0]; echo "-content-wrapper\">
-                                                                       <div class=\"panel-body\">";
-                                                                               if(!empty($page['content'])) echo $page['content']; echo"
-                                                                               <div id=\"pause\"></div> <!-- The pause/resume Ajax indicator -->
+                                       <div class="col-lg-8 col-md-8 col-sm-12 col-xs-12" id="content">
+                                               <section class="sectiontop">
+                                                               <div class="panel ' . DI::args()->get(0, 'generic') . '-content-wrapper">
+                                                                       <div class="panel-body">';
+                                                                               if(!empty($page['content'])) echo $page['content']; echo'
+                                                                               <div id="pause"></div> <!-- The pause/resume Ajax indicator -->
                                                                        </div>
                                                                </div>
                                                </section>
                                        </div>
-                                               ";
+                                               ';
 ?>
                        </div><!--row-->
                </div><!-- container -->
 
-               <div id="back-to-top" title="back to top">&#8679;</div>
+               <div id="back-to-top" title="<?php echo DI::l10n()->t('Back to top')?>">⇧</div>
        </main>
 
 <footer>
-<span id="notifsound"></span>
 <script>
-       $("#menu-toggle").click(function(e) {
+       $('#menu-toggle').click(function(e) {
                e.preventDefault();
-               $("#wrapper").toggleClass("toggled");
+               $('#wrapper').toggleClass('toggled');
        });
 </script>
 <script type="text/javascript">
 
 <script>
 var pagetitle = null;
-$("nav").bind('nav-update', function(e,data)
+$('nav').bind('nav-update', function(e,data)
 {
        if (pagetitle==null) pagetitle = document.title;
        var count = $(data).find('notif').attr('count');
        if (count>0)
        {
-               document.title = "("+count+") "+pagetitle;
-               /* document.getElementById('notifsound').innerHTML='<object type="audio/mpeg" width="0" height="0" data="<?=$frio?>/audios/901.mp3"><param name="notif" value="<?=$frio?>/audios/901.mp3" /><param name="autostart" value="true" /><param name="loop" value="false" /></object>'; */
+               document.title = '('+count+') '+pagetitle;
        }
        else
        {