X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fdispy-dark%2Ftheme.php;h=c9028b9a9aeb822f382414c5592df62db1993bf0;hb=cdb6510b9f3007d2afd3081313caa7d045af1e7c;hp=c0611ce83daa3a517114c1c94e419641a49a2f52;hpb=41d595d5bc74987d95ffc6f81194ccc20050e5a4;p=friendica.git diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php index c0611ce83d..c9028b9a9a 100644 --- a/view/theme/dispy-dark/theme.php +++ b/view/theme/dispy-dark/theme.php @@ -3,114 +3,152 @@ /* * Name: Dispy Dark * Description: Dispy Dark, Friendica theme - * Version: 0.9 + * Version: 1.1 * Author: Simon * Maintainer: Simon + * Screenshot: Screenshot */ - +$a = get_app(); $a->theme_info = array( - 'extends' => 'dispy-dark' + 'name' => 'dispy-dark', + 'version' => '1.1' ); -$a->page['htmlhead'] .= <<< EOT - + EOT; +} + +function dispy_dark_community_info() { + $a = get_app(); + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; + + $fpostitJS = <<theme_info['name'] . '/fpostit/fpostit.php?url=' + + encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' + + encodeURIComponent(''+(window.getSelection ? window.getSelection() : document.getSelection ? + document.getSelection() : document.selection.createRange().text)); + a_funct = function() { + if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) { + location.href = the_url; + } + if (/Firefox/.test(navigator.userAgent)) { + setTimeout(a_funct, 0) + } else { + a_funct(); + } + })(); +FPI; + + $aside['$fpostitJS'] = $fpostitJS; + $tpl = file_get_contents(dirname(__file__) . '/communityhome.tpl'); + return $a->page['aside_bottom'] = replace_macros($tpl, $aside); +}