2012-09-02 07:11:17 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name: Smoothly
|
2014-01-27 08:36:38 -05: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 03:24:37 -04:00
|
|
|
* Screenshot: <a href="screenshot.png">Screenshot</a>
|
2012-09-02 07:11:17 -04:00
|
|
|
*/
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-10-31 10:35:50 -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 smoothly_init(App $a) {
|
2018-10-31 13:25:38 -04:00
|
|
|
Renderer::setActiveTemplateEngine('smarty3');
|
2013-01-03 12:47:45 -05:00
|
|
|
|
2012-09-24 04:15:31 -04:00
|
|
|
$cssFile = null;
|
|
|
|
$ssl_state = null;
|
2019-12-30 17:00:08 -05:00
|
|
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2012-09-11 05:06:55 -04:00
|
|
|
|
2012-09-02 07:11:17 -04:00
|
|
|
<script>
|
2012-09-08 02:54:18 -04:00
|
|
|
function cmtBbOpen(id) {
|
|
|
|
$(".comment-edit-bb-" + id).show();
|
|
|
|
}
|
|
|
|
function cmtBbClose(comment, id) {
|
|
|
|
$(".comment-edit-bb-" + id).hide();
|
|
|
|
}
|
2012-09-02 07:11:17 -04:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-01-07 09:49:13 -05:00
|
|
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
2012-09-08 03:24:37 -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');}
|
2012-09-08 02:54:18 -04: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');},
|
2012-09-08 02:54:18 -04:00
|
|
|
|
2017-01-07 09:49:13 -05:00
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
|
2012-09-08 02:54:18 -04: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');}
|
2012-09-08 02:54:18 -04: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');},
|
2012-09-08 02:54:18 -04: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');}
|
2012-09-08 02:54:18 -04:00
|
|
|
);
|
|
|
|
|
2012-09-02 07:11:17 -04:00
|
|
|
});
|
2012-09-08 02:54:18 -04:00
|
|
|
|
2012-09-02 07:11:17 -04:00
|
|
|
</script>
|
|
|
|
EOT;
|
2012-09-17 05:22:12 -04:00
|
|
|
|
2017-04-30 00:01:26 -04:00
|
|
|
/** custom css **/
|
2012-09-24 04:15:31 -04:00
|
|
|
if (!is_null($cssFile)) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
2012-09-24 04:15:31 -04:00
|
|
|
}
|
2012-09-17 05:22:12 -04:00
|
|
|
|
2017-04-30 00:01:26 -04:00
|
|
|
_js_in_foot();
|
2012-09-17 05:22:12 -04:00
|
|
|
}
|
|
|
|
|
2017-01-07 09:49:13 -05:00
|
|
|
if (! function_exists('_js_in_foot')) {
|
2012-09-17 05:22:12 -04:00
|
|
|
function _js_in_foot() {
|
|
|
|
/** @purpose insert stuff in bottom of page
|
|
|
|
*/
|
2012-09-24 04:15:31 -04:00
|
|
|
$ssl_state = null;
|
2019-12-30 17:00:08 -05:00
|
|
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
2012-09-17 05:22:12 -04:00
|
|
|
$bottom['$baseurl'] = $baseurl;
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('bottom.tpl');
|
2012-09-17 05:22:12 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
return DI::page()['bottom'] = Renderer::replaceMacros($tpl, $bottom);
|
2012-09-17 05:22:12 -04:00
|
|
|
}
|
|
|
|
}
|