X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fdispy-dark%2Ftheme.php;h=c9028b9a9aeb822f382414c5592df62db1993bf0;hb=cdb6510b9f3007d2afd3081313caa7d045af1e7c;hp=84cbc05cd8b75c4a0f9e47f9183051095d5c10a8;hpb=40a65d38e04df5256d05f2a16497c39f83f51bd5;p=friendica.git diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php index 84cbc05cd8..c9028b9a9a 100644 --- a/view/theme/dispy-dark/theme.php +++ b/view/theme/dispy-dark/theme.php @@ -3,137 +3,135 @@ /* * Name: Dispy Dark * Description: Dispy Dark, Friendica theme - * Version: 1.0 + * Version: 1.1 * Author: Simon * Maintainer: Simon - * Screenshot: screenshot + * Screenshot: Screenshot */ - +$a = get_app(); $a->theme_info = array( - 'extends' => 'dispy-dark' + 'name' => 'dispy-dark', + 'version' => '1.1' ); -$a->page['htmlhead'] .= <<< EOT - + EOT; +} -function dispydark_community_info() { +function dispy_dark_community_info() { $a = get_app(); + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; - $fostitJS = "javascript: (function() { - the_url = '".$a->get_baseurl($ssl_state)."/view/theme/dispy-dark/fpostit/fpostit.php?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)); @@ -146,20 +144,11 @@ function dispydark_community_info() { } else { a_funct(); } - })();" ; + })(); +FPI; - $aside['$fostitJS'] = $fostitJS; - $url = $a->get_baseurl($ssl_state); - $aside['$url'] = $url; - - $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl'); - $a->page['aside_bottom'] = replace_macros($tpl, $aside); + $aside['$fpostitJS'] = $fpostitJS; + $tpl = file_get_contents(dirname(__file__) . '/communityhome.tpl'); + return $a->page['aside_bottom'] = replace_macros($tpl, $aside); } -// use our 'default.php' instead of the system-wide one -$a->page['template'] = "theme/dispy-dark/default"; - -// aside on profile page -if ($a->argv[0] === "profile") { - dispydark_community_info(); -}