2017-11-19 11:59:37 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2017-11-19 14:47:04 -05:00
|
|
|
* @file src/Worker/CreateShadowEntry.php
|
2017-11-19 11:59:37 -05:00
|
|
|
* @brief This script creates posts with UID = 0 for a given public post.
|
|
|
|
*
|
|
|
|
* This script is started from mod/item.php to save some time when doing a post.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-01-16 17:23:19 -05:00
|
|
|
use Friendica\Model\Item;
|
2017-11-19 11:59:37 -05:00
|
|
|
|
2017-11-19 14:47:04 -05:00
|
|
|
class CreateShadowEntry {
|
2017-11-19 11:59:37 -05:00
|
|
|
public static function execute($message_id = 0) {
|
|
|
|
if (empty($message_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-16 17:23:19 -05:00
|
|
|
Item::addShadowPost($message_id);
|
2017-11-19 11:59:37 -05:00
|
|
|
}
|
|
|
|
}
|