]> 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 29fdbea746c88b1a78ed8ca47165082bfb5de421..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(array $parameters = [])
+       protected function post(array $request = [])
        {
                if (!empty($_REQUEST['body'])) {
                        $_REQUEST['return'] = 'network';
@@ -51,7 +51,7 @@ class Compose extends BaseModule
                }
        }
 
-       public static function content(array $parameters = [])
+       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 = $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':
@@ -167,13 +167,12 @@ class Compose extends BaseModule
                        '$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? DI::l10n()->t('Categories (comma-separated list)') : ''),
                        '$scheduled_at' => Temporal::getDateTimeField(
                                new DateTime(),
-                               DateTime::createFromFormat(DateTimeFormat::MYSQL, DateTimeFormat::local('now + 6 months')),
+                               new DateTime('now + 6 months'),
                                null,
                                DI::l10n()->t('Scheduled at'),
-                               'scheduled_at',
+                               'scheduled_at'
                        ),
 
-
                        '$title'        => $title,
                        '$category'     => $category,
                        '$body'         => $body,