2011-09-27 07:32:20 +00:00
|
|
|
<?php
|
2020-02-09 15:34:23 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2013-02-08 16:03:50 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-10-31 17:25:38 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 19:02:09 +00:00
|
|
|
use Friendica\DI;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
/*
|
|
|
|
* This script can be included even when the app is in maintenance mode which requires us to avoid any config call
|
|
|
|
*/
|
|
|
|
|
2017-01-09 12:06:08 +00:00
|
|
|
function duepuntozero_init(App $a) {
|
2013-02-08 16:03:50 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
Renderer::setActiveTemplateEngine('smarty3');
|
|
|
|
|
|
|
|
$colorset = null;
|
2011-12-02 00:33:53 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
if (DI::mode()->has(App\Mode::MAINTENANCEDISABLED)) {
|
2022-10-20 21:45:14 +00:00
|
|
|
$colorset = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset');
|
2022-07-12 23:48:36 +00:00
|
|
|
if (!$colorset)
|
|
|
|
$colorset = DI::config()->get('duepuntozero', 'colorset'); // user setting have priority, then node settings
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($colorset) {
|
|
|
|
if ($colorset == 'greenzero')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/greenzero.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
if ($colorset == 'purplezero')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/purplezero.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
if ($colorset == 'easterbunny')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/easterbunny.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
if ($colorset == 'darkzero')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/darkzero.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
if ($colorset == 'comix')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/comix.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
if ($colorset == 'slackr')
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/slackr.css" type="text/css" media="screen" />' . "\n";
|
|
|
|
}
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2011-12-02 00:33:53 +00:00
|
|
|
<script>
|
2012-08-23 11:09:35 +00:00
|
|
|
function cmtBbOpen(comment, id) {
|
2017-01-07 14:49:13 +00:00
|
|
|
if ($(comment).hasClass('comment-edit-text-full')) {
|
2012-08-23 11:09:35 +00:00
|
|
|
$(".comment-edit-bb-" + id).show();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-04-25 00:43:50 +00:00
|
|
|
}
|
2012-04-25 08:36:22 +00:00
|
|
|
function cmtBbClose(comment, id) {
|
2012-08-23 11:09:35 +00:00
|
|
|
return false;
|
2012-04-25 00:43:50 +00:00
|
|
|
}
|
2011-12-02 00:33:53 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
2012-03-13 03:21:32 +00:00
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
$('.group-edit-icon').hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
|
2011-12-02 00:33:53 +00:00
|
|
|
);
|
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
$('.sidebar-group-element').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
|
2011-12-02 00:33:53 +00:00
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
|
2011-12-02 00:33:53 +00:00
|
|
|
);
|
2011-12-02 02:27:45 +00:00
|
|
|
|
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
$('.savedsearchdrop').hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
|
2011-12-02 02:27:45 +00:00
|
|
|
);
|
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
$('.savedsearchterm').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
|
2011-12-02 02:27:45 +00:00
|
|
|
|
2017-01-07 14:49:13 +00:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
|
2011-12-02 02:27:45 +00:00
|
|
|
);
|
2011-12-02 00:33:53 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
EOT;
|
2012-04-08 12:52:00 +00:00
|
|
|
}
|
2020-02-19 15:28:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|null $uid
|
|
|
|
* @return null
|
|
|
|
* @see \Friendica\Core\Theme::getBackgroundColor()
|
|
|
|
* @TODO Implement this function
|
|
|
|
*/
|
|
|
|
function duepuntozero_get_background_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|null $uid
|
|
|
|
* @return null
|
|
|
|
* @see \Friendica\Core\Theme::getThemeColor()
|
|
|
|
* @TODO Implement this function
|
|
|
|
*/
|
|
|
|
function duepuntozero_get_theme_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|