X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FBookmarklet.php;h=e5b3ee4adecf9ff63b53f4309b62cd8f7cf25f69;hb=0031b4e18cff5ded33c5f8599d6d93ea090986ff;hp=92130eeff1510d7adc5c5707db9525aaf2379c54;hpb=1de3960e267a8d298348fbca18cf1be1f6a20f7a;p=friendica.git diff --git a/src/Module/Bookmarklet.php b/src/Module/Bookmarklet.php index 92130eeff1..e5b3ee4ade 100644 --- a/src/Module/Bookmarklet.php +++ b/src/Module/Bookmarklet.php @@ -1,10 +1,31 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; +use Friendica\Content\PageInfo; use Friendica\Core\ACL; -use Friendica\Core\L10n; +use Friendica\DI; +use Friendica\Module\Security\Login; use Friendica\Network\HTTPException; use Friendica\Util\Strings; @@ -14,28 +35,28 @@ use Friendica\Util\Strings; */ class Bookmarklet extends BaseModule { - public static function content() + public static function content(array $parameters = []) { $_GET['mode'] = 'minimal'; - $app = self::getApp(); - $config = $app->getConfig(); + $app = DI::app(); + $config = DI::config(); if (!local_user()) { - $output = '

' . L10n::t('Login') . '

'; - $output .= Login::form($app->query_string, intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true); + $output = '

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

'; + $output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true); return $output; } $referer = Strings::normaliseLink($_SERVER['HTTP_REFERER'] ?? ''); - $page = Strings::normaliseLink($app->getBaseURL() . "/bookmarklet"); + $page = Strings::normaliseLink(DI::baseUrl()->get() . "/bookmarklet"); if (!strstr($referer, $page)) { if (empty($_REQUEST["url"])) { - throw new HTTPException\BadRequestException(L10n::t('This page is missing a url parameter.')); + throw new HTTPException\BadRequestException(DI::l10n()->t('This page is missing a url parameter.')); } - $content = add_page_info($_REQUEST["url"]); + $content = "\n" . PageInfo::getFooterFromUrl($_REQUEST['url']); $x = [ 'is_owner' => true, @@ -44,7 +65,7 @@ class Bookmarklet extends BaseModule 'nickname' => $app->user['nickname'], 'lockstate' => ((is_array($app->user) && ((strlen($app->user['allow_cid'])) || (strlen($app->user['allow_gid'])) || (strlen($app->user['deny_cid'])) || (strlen($app->user['deny_gid'])))) ? 'lock' : 'unlock'), 'default_perms' => ACL::getDefaultUserPermissions($app->user), - 'acl' => ACL::getFullSelectorHTML($app->user, true), + 'acl' => ACL::getFullSelectorHTML(DI::page(), $app->user, true), 'bang' => '', 'visitor' => 'block', 'profile_uid' => local_user(), @@ -54,7 +75,7 @@ class Bookmarklet extends BaseModule $output = status_editor($app, $x, 0, false); $output .= ""; } else { - $output = '

' . L10n::t('The post was created') . '

'; + $output = '

' . DI::l10n()->t('The post was created') . '

'; $output .= ""; }