]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Item/Compose.php
Normalize base URL usage in admin templates
[friendica.git] / src / Module / Item / Compose.php
index c229fb15aeb5f81b4e8c0a18be41dee50a8ec207..68b14b97d69fc6f98b348c0e77b5df603e579988 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
  *
@@ -40,7 +40,7 @@ use Friendica\Util\Temporal;
 
 class Compose extends BaseModule
 {
-       public static function post()
+       protected function post(array $request = [])
        {
                if (!empty($_REQUEST['body'])) {
                        $_REQUEST['return'] = 'network';
@@ -51,7 +51,7 @@ class Compose extends BaseModule
                }
        }
 
-       public static function content()
+       protected function content(array $request = []): string
        {
                if (!local_user()) {
                        return Login::form('compose', false);
@@ -64,7 +64,7 @@ class Compose extends BaseModule
                }
 
                /// @TODO Retrieve parameter from router
-               $posttype = static::$parameters['type'] ?? Item::PT_ARTICLE;
+               $posttype = $this->parameters['type'] ?? Item::PT_ARTICLE;
                if (!in_array($posttype, [Item::PT_ARTICLE, Item::PT_PERSONAL_NOTE])) {
                        switch ($posttype) {
                                case 'note':