X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=showmore%2Fshowmore.php;h=bfde40f3c473c45e8a287504210d511f6976ff03;hb=30eb87e939f0a94df3caaa89f5404169a01c99d2;hp=f7bb0c505e9ae2e05ad5ba3d9fec19373bf87ec3;hpb=ffe5038102b53dc9e00ef0b52d33e27226d35f7f;p=friendica-addons.git diff --git a/showmore/showmore.php b/showmore/showmore.php index f7bb0c50..bfde40f3 100644 --- a/showmore/showmore.php +++ b/showmore/showmore.php @@ -8,8 +8,7 @@ * */ use Friendica\Core\Hook; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; +use Friendica\DI; use Friendica\Util\Strings; function showmore_install() @@ -34,30 +33,30 @@ function showmore_addon_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"; - $enable_checked = (intval(PConfig::get(local_user(), 'showmore', 'disable')) ? '' : ' checked="checked"'); - $chars = PConfig::get(local_user(), 'showmore', 'chars', 1100); + $enable_checked = (intval(DI::pConfig()->get(local_user(), 'showmore', 'disable')) ? '' : ' checked="checked"'); + $chars = DI::pConfig()->get(local_user(), 'showmore', 'chars', 1100); $s .= ''; - $s .= '

' . L10n::t('"Show more" Settings').'

'; + $s .= '

' . DI::l10n()->t('"Show more" Settings').'

'; $s .= '
'; $s .= ''; return; @@ -70,11 +69,11 @@ function showmore_addon_settings_post(&$a, &$b) } if (!empty($_POST['showmore-submit'])) { - PConfig::set(local_user(), 'showmore', 'chars', trim($_POST['showmore-chars'])); + DI::pConfig()->set(local_user(), 'showmore', 'chars', trim($_POST['showmore-chars'])); $enable = (!empty($_POST['showmore-enable']) ? intval($_POST['showmore-enable']) : 0); $disable = 1-$enable; - PConfig::set(local_user(), 'showmore', 'disable', $disable); - info(L10n::t('Show More Settings saved.') . EOL); + DI::pConfig()->set(local_user(), 'showmore', 'disable', $disable); + info(DI::l10n()->t('Show More Settings saved.') . EOL); } } @@ -118,11 +117,11 @@ function showmore_prepare_body(\Friendica\App $a, &$hook_data) return; } - if (PConfig::get(local_user(), 'showmore', 'disable')) { + if (DI::pConfig()->get(local_user(), 'showmore', 'disable')) { return; } - $chars = (int) PConfig::get(local_user(), 'showmore', 'chars', 1100); + $chars = (int) DI::pConfig()->get(local_user(), 'showmore', 'chars', 1100); if (get_body_length($hook_data['html']) > $chars) { $found = true; @@ -134,7 +133,7 @@ function showmore_prepare_body(\Friendica\App $a, &$hook_data) if ($found) { $rnd = Strings::getRandomHex(8); $hook_data['html'] = '' . $shortened . " " . - '' . L10n::t('show more') . '' . + '' . DI::l10n()->t('show more') . '' . ''; } }