]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/smoothly/theme.php
New group button
[friendica.git] / view / theme / smoothly / theme.php
index e20e9003f9c6ab9504f380015e7540bf000e4526..48bfbfee63458661640a41a0f64785edef181f39 100644 (file)
@@ -1,4 +1,26 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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/>.
+ *
+ * Name: smoothly
+ *
+ * BEWARE: currently UNSUPPORTED
+ */
 
 /*
  * Name: Smoothly
@@ -14,12 +36,16 @@ use Friendica\App;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 
+/*
+ * This script can be included even when the app is in maintenance mode which requires us to avoid any config call
+ */
+
 function smoothly_init(App $a) {
        Renderer::setActiveTemplateEngine('smarty3');
 
        $cssFile = null;
-       $ssl_state = null;
-       $baseurl = DI::baseUrl()->get($ssl_state);
+       $ssl_state = false;
+       $baseurl = (string)DI::baseUrl();
        DI::page()['htmlhead'] .= <<< EOT
 
 <script>
@@ -33,14 +59,14 @@ $(document).ready(function() {
 
        $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
 
-       $('.group-edit-icon').hover(
+       $('.circle-edit-icon').hover(
                function() {
                        $(this).addClass('icon'); $(this).removeClass('iconspacer');},
                function() {
                        $(this).removeClass('icon'); $(this).addClass('iconspacer');}
        );
 
-       $('.sidebar-group-element').hover(
+       $('.sidebar-circle-element').hover(
                function() {
                        id = $(this).attr('id');
                        $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
@@ -85,8 +111,8 @@ if (! function_exists('_js_in_foot')) {
        function _js_in_foot() {
                /** @purpose insert stuff in bottom of page
                */
-               $ssl_state = null;
-               $baseurl = DI::baseUrl()->get($ssl_state);
+               $ssl_state = false;
+               $baseurl = (string)DI::baseUrl();
                $bottom['$baseurl'] = $baseurl;
                $tpl = Renderer::getMarkupTemplate('bottom.tpl');