Replace current_theme() and current_theme_url() calls

This commit is contained in:
Hypolite Petovan 2018-04-28 18:39:29 -04:00
parent a162d4b583
commit 82fd1df5dd
2 changed files with 6 additions and 6 deletions

View File

@ -21,9 +21,9 @@ function membersince_uninstall()
Addon::unregisterHook('profile_advanced', 'addon/membersince/membersince.php', 'membersince_display');
}
function membersince_display(&$a, &$b)
function membersince_display(Friendica\App $a, &$b)
{
if (current_theme() == 'frio') {
if ($a->getCurrentTheme() == 'frio') {
// Works in Frio.
$doc = new DOMDocument();
$doc->loadHTML(mb_convert_encoding($b, 'HTML-ENTITIES', 'UTF-8'));

View File

@ -24,10 +24,10 @@ function smileybutton_uninstall() {
function show_button($a, &$b) {
function show_button(Friendica\App $a, &$b) {
// Disable if theme is quattro
// TODO add style for quattro
if (current_theme() == 'quattro')
if ($a->getCurrentTheme() == 'quattro')
return;
// Disable for mobile because most mobiles have a smiley key for ther own
@ -112,7 +112,7 @@ function show_button($a, &$b) {
$s .= "\t</tr></table>";
//Add css to header
$css_file = 'addon/smileybutton/view/'.current_theme().'.css';
$css_file = 'addon/smileybutton/view/' . $a->getCurrentTheme() . '.css';
if (! file_exists($css_file))
$css_file = 'addon/smileybutton/view/default.css';
$css_url = $a->get_baseurl().'/'.$css_file;
@ -121,7 +121,7 @@ function show_button($a, &$b) {
//Get the correct image for the theme
$image = 'addon/smileybutton/view/'.current_theme().'.png';
$image = 'addon/smileybutton/view/' . $a->getCurrentTheme() . '.png';
if (! file_exists($image))
$image = 'addon/smileybutton/view/default.png';
$image_url = $a->get_baseurl().'/'.$image;