X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fpoke.php;h=0034a2d87a50f966b269b57c317bcebc3ba14653;hb=8293d5ed0af78ae6cc5629bb1f982a7b29794d32;hp=69fd42c72cf1d19cfce6f0a3c3075f6278b2e6d2;hpb=73b448c82926e384c110434de793c8cc55c5ddbc;p=friendica.git diff --git a/mod/poke.php b/mod/poke.php index 69fd42c72c..0034a2d87a 100644 --- a/mod/poke.php +++ b/mod/poke.php @@ -15,11 +15,11 @@ use Friendica\App; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\Renderer; use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Item; use Friendica\Protocol\Activity; use Friendica\Util\Strings; @@ -39,7 +39,7 @@ function poke_init(App $a) $verb = Strings::escapeTags(trim($_GET['verb'])); - $verbs = L10n::getPokeVerbs(); + $verbs = DI::l10n()->getPokeVerbs(); if (!array_key_exists($verb, $verbs)) { return; @@ -121,7 +121,7 @@ function poke_init(App $a) $arr['object-type'] = Activity\ObjectType::PERSON; $arr['origin'] = 1; - $arr['body'] = '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' . ' ' . L10n::t($verbs[$verb][0]) . ' ' . '[url=' . $target['url'] . ']' . $target['name'] . '[/url]'; + $arr['body'] = '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' . ' ' . DI::l10n()->t($verbs[$verb][0]) . ' ' . '[url=' . $target['url'] . ']' . $target['name'] . '[/url]'; $arr['object'] = '' . Activity\ObjectType::PERSON . '' . $target['name'] . '' . $target['url'] . ''; $arr['object'] .= '' . XML::escape('' . "\n"); @@ -139,7 +139,7 @@ function poke_init(App $a) function poke_content(App $a) { if (!local_user()) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } @@ -156,14 +156,14 @@ function poke_content(App $a) $id = $contact['id']; $head_tpl = Renderer::getMarkupTemplate('poke_head.tpl'); - $a->page['htmlhead'] .= Renderer::replaceMacros($head_tpl,[ - '$baseurl' => System::baseUrl(true), + DI::page()['htmlhead'] .= Renderer::replaceMacros($head_tpl,[ + '$baseurl' => DI::baseUrl()->get(true), ]); $parent = (!empty($_GET['parent']) ? intval($_GET['parent']) : '0'); - $verbs = L10n::getPokeVerbs(); + $verbs = DI::l10n()->getPokeVerbs(); $shortlist = []; foreach ($verbs as $k => $v) { @@ -175,14 +175,14 @@ function poke_content(App $a) $tpl = Renderer::getMarkupTemplate('poke_content.tpl'); $o = Renderer::replaceMacros($tpl,[ - '$title' => L10n::t('Poke/Prod'), - '$desc' => L10n::t('poke, prod or do other things to somebody'), - '$clabel' => L10n::t('Recipient'), - '$choice' => L10n::t('Choose what you wish to do to recipient'), + '$title' => DI::l10n()->t('Poke/Prod'), + '$desc' => DI::l10n()->t('poke, prod or do other things to somebody'), + '$clabel' => DI::l10n()->t('Recipient'), + '$choice' => DI::l10n()->t('Choose what you wish to do to recipient'), '$verbs' => $shortlist, '$parent' => $parent, - '$prv_desc' => L10n::t('Make this post private'), - '$submit' => L10n::t('Submit'), + '$prv_desc' => DI::l10n()->t('Make this post private'), + '$submit' => DI::l10n()->t('Submit'), '$name' => $name, '$id' => $id ]);