X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=krynn%2Fkrynn.php;h=fe25fdf75ce743e43c9cd39349aab6b97d723c5a;hb=b11e418f3570a5a61bab3fb3bc2660b92635b108;hp=8f92daf75e9d3d56a704dd96fe8d88500a1d56f9;hpb=36120615dd049c94b9db7858aae77d8ec9d28e84;p=friendica-addons.git diff --git a/krynn/krynn.php b/krynn/krynn.php index 8f92daf7..fe25fdf7 100644 --- a/krynn/krynn.php +++ b/krynn/krynn.php @@ -10,9 +10,8 @@ *"My body was my sacrifice... for my magic. This damage is permanent." - Raistlin Majere */ use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; -use Friendica\Core\PConfig; +use Friendica\DI; function krynn_install() { @@ -84,7 +83,7 @@ function krynn_post_hook($a, &$item) { /* Retrieve our personal config setting */ - $active = PConfig::get(local_user(), 'krynn', 'enable'); + $active = DI::pConfig()->get(local_user(), 'krynn', 'enable'); if(! $active) return; @@ -122,7 +121,7 @@ function krynn_settings_post($a,$post) { if(! local_user()) return; if($_POST['krynn-submit']) - PConfig::set(local_user(),'krynn','enable',intval($_POST['krynn'])); + DI::pConfig()->set(local_user(),'krynn','enable',intval($_POST['krynn'])); } @@ -142,34 +141,34 @@ function krynn_settings(&$a,&$s) { /* Add our stylesheet to the page so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; + DI::page()['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ - $enabled = PConfig::get(local_user(),'krynn','enable'); + $enabled = DI::pConfig()->get(local_user(),'krynn','enable'); $checked = (($enabled) ? ' checked="checked" ' : ''); /* Add some HTML to the existing form */ $s .= ''; - $s .= '

' . L10n::t('Krynn') . '

'; + $s .= '

' . DI::l10n()->t('Krynn') . '

'; $s .= '
'; $s .= ''; + $s .= '
'; }