2012-09-02 13:11:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name: Smoothly
|
2014-01-27 14:36:38 +01:00
|
|
|
* Description: Theme based on Testbubble and optimized for Tablets.
|
|
|
|
* Version: Version 2013-05-08
|
|
|
|
* Author: Anne Walk, Devlon Duthied
|
|
|
|
* Author: Alex <https://red.pixelbits.de/channel/alex>
|
|
|
|
* Maintainer: Nomen Nominandum
|
2012-09-08 09:24:37 +02:00
|
|
|
* Screenshot: <a href="screenshot.png">Screenshot</a>
|
2012-09-02 13:11:17 +02:00
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-31 15:35:50 +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 smoothly_init(App $a) {
|
2018-10-31 18:25:38 +01:00
|
|
|
Renderer::setActiveTemplateEngine('smarty3');
|
2013-01-03 18:47:45 +01:00
|
|
|
|
2012-09-24 10:15:31 +02:00
|
|
|
$cssFile = null;
|
|
|
|
$ssl_state = null;
|
2019-12-30 23:00:08 +01:00
|
|
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2012-09-11 11:06:55 +02:00
|
|
|
|
2012-09-02 13:11:17 +02:00
|
|
|
<script>
|
2012-09-08 08:54:18 +02:00
|
|
|
function cmtBbOpen(id) {
|
|
|
|
$(".comment-edit-bb-" + id).show();
|
|
|
|
}
|
|
|
|
function cmtBbClose(comment, id) {
|
|
|
|
$(".comment-edit-bb-" + id).hide();
|
|
|
|
}
|
2012-09-02 13:11:17 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
2012-09-08 09:24:37 +02: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');}
|
2012-09-08 08:54:18 +02: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');},
|
2012-09-08 08:54:18 +02:00
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
|
2012-09-08 08:54:18 +02: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');}
|
2012-09-08 08:54:18 +02: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');},
|
2012-09-08 08:54:18 +02: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');}
|
2012-09-08 08:54:18 +02:00
|
|
|
);
|
|
|
|
|
2012-09-02 13:11:17 +02:00
|
|
|
});
|
2012-09-08 08:54:18 +02:00
|
|
|
|
2012-09-02 13:11:17 +02:00
|
|
|
</script>
|
|
|
|
EOT;
|
2012-09-17 11:22:12 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
/** custom css **/
|
2012-09-24 10:15:31 +02:00
|
|
|
if (!is_null($cssFile)) {
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
2012-09-24 10:15:31 +02:00
|
|
|
}
|
2012-09-17 11:22:12 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
_js_in_foot();
|
2012-09-17 11:22:12 +02:00
|
|
|
}
|
|
|
|
|
2017-01-07 15:49:13 +01:00
|
|
|
if (! function_exists('_js_in_foot')) {
|
2012-09-17 11:22:12 +02:00
|
|
|
function _js_in_foot() {
|
|
|
|
/** @purpose insert stuff in bottom of page
|
|
|
|
*/
|
2012-09-24 10:15:31 +02:00
|
|
|
$ssl_state = null;
|
2019-12-30 23:00:08 +01:00
|
|
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
2012-09-17 11:22:12 +02:00
|
|
|
$bottom['$baseurl'] = $baseurl;
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('bottom.tpl');
|
2012-09-17 11:22:12 +02:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
return DI::page()['bottom'] = Renderer::replaceMacros($tpl, $bottom);
|
2012-09-17 11:22:12 +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 smoothly_get_background_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|null $uid
|
|
|
|
* @return null
|
|
|
|
* @see \Friendica\Core\Theme::getThemeColor()
|
|
|
|
* @TODO Implement this function
|
|
|
|
*/
|
|
|
|
function smoothly_get_theme_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|