X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FPost%2FDelayed.php;h=0f47264c538f65caf8cbe3b270ebd13ddf92407e;hb=2108be7e07792a069ef0650126ac22d470a4b7fc;hp=24b9989a4b2fca4db4a515e77ec51b048dc3dbd0;hpb=6a23b17c959e306ca7ef913fa94cc5eaf62b6fef;p=friendica.git diff --git a/src/Model/Post/Delayed.php b/src/Model/Post/Delayed.php index 24b9989a4b..0f47264c53 100644 --- a/src/Model/Post/Delayed.php +++ b/src/Model/Post/Delayed.php @@ -33,8 +33,21 @@ use Friendica\Util\DateTimeFormat; class Delayed { + /** + * The content of the post is posted as is. Connector settings are using the default settings. + * This is used for automated scheduled posts via feeds or from the API. + */ const PREPARED = 0; + /** + * The content is posted like a manual post. Means some processing of body will be done. + * Also it is posted with default permissions and default connector settings. + * This is used for mirrored connector posts. + */ const UNPREPARED = 1; + /** + * Like PREPARED, but additionally the connector settings can differ. + * This is used when manually publishing scheduled posts. + */ const PREPARED_NO_HOOK = 2; /**