public function Post::getEntry in Open Social 8.9
Same name and namespace in other branches
- 8 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.2 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.3 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.4 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.5 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.6 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.7 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 8.8 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 10.3.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 10.0.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 10.1.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
- 10.2.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post::getEntry()
Makes an array with data of an entity.
Parameters
array $item: Array with items.
Return value
array Returns an array.
Overrides DemoEntity::getEntry
File
- modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Post.php, line 22
Class
- Post
- Post Plugin for demo content.
Namespace
Drupal\social_demo\Plugin\DemoContentCode
public function getEntry(array $item) {
$recipient_id = NULL;
$group_id = NULL;
$file_id = NULL;
$entry = parent::getEntry($item);
$created = $this
->createDate($item['created']);
if (!empty($item['recipient']) && ($recipient = $this
->loadByUuid('user', $item['recipient']))) {
$recipient_id = $recipient
->id();
}
if (!empty($item['group']) && ($group = $this
->loadByUuid('group', $item['group']))) {
$group_id = $group
->id();
}
// Load image by uuid and set to post.
if (!empty($item['field_post_image']) && ($file = $this
->loadByUuid('file', $item['field_post_image']))) {
$file_id = $file
->id();
}
return $entry + [
'langcode' => $item['langcode'],
'type' => $item['type'],
'field_post' => [
'value' => $this
->checkMentionOrLinkByUuid($item['field_post']),
'format' => 'basic_html',
],
'field_visibility' => $item['field_visibility'],
'field_recipient_user' => $recipient_id,
'field_recipient_group' => $group_id,
'field_post_image' => $file_id,
'user_id' => $this
->loadByUuid('user', $item['uid'])
->id(),
'created' => $created,
'changed' => $created,
];
}