]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/DelayedPublish.php
Merge pull request #11503 from annando/bulk-delivery
[friendica.git] / src / Worker / DelayedPublish.php
index db37ba306789cfa9ee986cf1b70405e368163703..08bca828510fc8034f44c55a011a5b48999a2eb4 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -29,15 +29,17 @@ class DelayedPublish
         /**
         * Publish a post, used for delayed postings
          *
-         * @param array $item
-         * @param integer $notify
-         * @param array $taglist
-         * @param array $attachments
+         * @param array  $item
+         * @param int    $notify
+         * @param array  $taglist
+         * @param array  $attachments
+         * @param int    $preparation_mode
+         * @param string $uri
          * @return void
          */
-       public static function execute(array $item, int $notify = 0, array $taglist = [], array $attachments = [])
+       public static function execute(array $item, int $notify = 0, array $taglist = [], array $attachments = [], int $preparation_mode = Post\Delayed::PREPARED, string $uri = '')
        {
-               $id = Post\Delayed::publish($item, $notify, $taglist, $attachments);
-               Logger::notice('Post published', ['id' => $id, 'uid' => $item['uid'], 'cid' => $item['contact-id'], 'notify' => $notify]);
+               $id = Post\Delayed::publish($item, $notify, $taglist, $attachments, $preparation_mode, $uri);
+               Logger::notice('Post published', ['id' => $id, 'uid' => $item['uid'], 'notify' => $notify, 'unprepared' => $preparation_mode]);
        }
 }