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