2011-09-27 09:32:20 +02:00
|
|
|
<?php
|
2013-02-08 17:03:50 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
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)
|
2017-11-07 03:22:52 +01:00
|
|
|
$colorset = 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
|
|
|
}
|