]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Bookmarklet.php
Use rawContent for Special Options to avoid a protected options() method
[friendica.git] / src / Module / Bookmarklet.php
index fab9dbc6c59e56fcc243d6744bad021b78b99c4f..970eb4790f66507d2cf9b1abf53fb3326214db86 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,7 +23,6 @@ namespace Friendica\Module;
 
 use Friendica\BaseModule;
 use Friendica\Content\PageInfo;
-use Friendica\Core\ACL;
 use Friendica\DI;
 use Friendica\Module\Security\Login;
 use Friendica\Network\HTTPException;
@@ -35,11 +34,10 @@ 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()) {
@@ -59,20 +57,10 @@ class Bookmarklet extends BaseModule
                        $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 .= "<script>window.resizeTo(800,550);</script>";
                } else {
                        $output = '<h2>' . DI::l10n()->t('The post was created') . '</h2>';