2011-09-27 09:32:20 +02:00
|
|
|
<?php
|
2020-02-09 16:34:23 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:34:23 +01: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 17:03:50 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-31 18:25:38 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 20:02:09 +01:00
|
|
|
use Friendica\DI;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:06:08 +01:00
|
|
|
function duepuntozero_init(App $a) {
|
2013-02-08 17:03:50 +01:00
|
|
|
|
2018-10-31 18:25:38 +01:00
|
|
|
Renderer::setActiveTemplateEngine('smarty3');
|
2011-12-02 01:33:53 +01:00
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
$colorset = DI::pConfig()->get( local_user(), 'duepuntozero','colorset');
|
2017-03-21 17:02:59 +01:00
|
|
|
if (!$colorset)
|
2020-01-19 21:21:13 +01:00
|
|
|
$colorset = DI::config()->get('duepuntozero', 'colorset'); // user setting have priority, then node settings
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset) {
|
|
|
|
if ($colorset == 'greenzero')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/greenzero.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset == 'purplezero')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/purplezero.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset == 'easterbunny')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/easterbunny.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset == 'darkzero')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/darkzero.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset == 'comix')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/comix.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
if ($colorset == 'slackr')
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/slackr.css" type="text/css" media="screen" />'."\n";
|
2017-03-21 17:02:59 +01:00
|
|
|
}
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2011-12-02 01:33:53 +01:00
|
|
|
<script>
|
2012-08-23 13:09:35 +02:00
|
|
|
function cmtBbOpen(comment, id) {
|
2017-01-07 15:49:13 +01:00
|
|
|
if ($(comment).hasClass('comment-edit-text-full')) {
|
2012-08-23 13:09:35 +02:00
|
|
|
$(".comment-edit-bb-" + id).show();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-04-25 02:43:50 +02:00
|
|
|
}
|
2012-04-25 10:36:22 +02:00
|
|
|
function cmtBbClose(comment, id) {
|
2012-08-23 13:09:35 +02:00
|
|
|
return false;
|
2012-04-25 02:43:50 +02:00
|
|
|
}
|
2011-12-02 01:33:53 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
2012-03-13 04:21:32 +01:00
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
$('.group-edit-icon').hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
|
2011-12-02 01:33:53 +01:00
|
|
|
);
|
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
$('.sidebar-group-element').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
|
2011-12-02 01:33:53 +01:00
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
|
2011-12-02 01:33:53 +01:00
|
|
|
);
|
2011-12-02 03:27:45 +01:00
|
|
|
|
|
|
|
|
2017-01-07 15:49:13 +01: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 03:27:45 +01:00
|
|
|
);
|
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
$('.savedsearchterm').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
|
2011-12-02 03:27:45 +01:00
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
|
2011-12-02 03:27:45 +01:00
|
|
|
);
|
2011-12-02 01:33:53 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
EOT;
|
2012-04-08 14:52:00 +02:00
|
|
|
}
|
2020-02-19 16:28:57 +01: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;
|
|
|
|
}
|