X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FBookmarklet.php;h=970eb4790f66507d2cf9b1abf53fb3326214db86;hb=38fbe281f9f774e8c0c9df1f5d36a8ecee08f34f;hp=5cd908488eed42dfee08882ac7b4475bd8fce4b3;hpb=75c74e856290a712344ad6b4042ef07ef661d584;p=friendica.git diff --git a/src/Module/Bookmarklet.php b/src/Module/Bookmarklet.php index 5cd908488e..970eb4790f 100644 --- a/src/Module/Bookmarklet.php +++ b/src/Module/Bookmarklet.php @@ -1,10 +1,28 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\ACL; -use Friendica\Core\L10n; +use Friendica\Content\PageInfo; use Friendica\DI; use Friendica\Module\Security\Login; use Friendica\Network\HTTPException; @@ -16,15 +34,14 @@ use Friendica\Util\Strings; */ class Bookmarklet extends BaseModule { - public static function content(array $parameters = []) + protected function content(array $request = []): string { $_GET['mode'] = 'minimal'; - $app = DI::app(); $config = DI::config(); if (!local_user()) { - $output = '

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

'; + $output = '

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

'; $output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true); return $output; } @@ -34,29 +51,19 @@ class Bookmarklet extends BaseModule 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, - 'allow_location' => $app->user['allow_location'], - 'default_location' => $app->user['default-location'], - '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(DI::page(), $app->user, true), - 'bang' => '', - 'visitor' => 'block', - 'profile_uid' => local_user(), 'title' => trim($_REQUEST['title'] ?? '', '*'), 'content' => $content ]; - $output = status_editor($app, $x, 0, false); + $output = DI::conversation()->statusEditor($x, 0, false); $output .= ""; } else { - $output = '

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

'; + $output = '

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

'; $output .= ""; }