You are here

protected function Topic::getEntry in Open Social 8

Same name and namespace in other branches
  1. 8.9 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  2. 8.2 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  3. 8.3 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  4. 8.4 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  5. 8.5 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  6. 8.6 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  7. 8.7 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  8. 8.8 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  9. 10.3.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  10. 10.0.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  11. 10.1.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()
  12. 10.2.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::getEntry()

Makes an array with data of an entity.

Parameters

array $item: Array with items.

Return value

array Returns an array.

Overrides DemoNode::getEntry

File

modules/custom/social_demo/src/Plugin/DemoContent/Topic.php, line 68

Class

Topic
Topic Plugin for demo content.

Namespace

Drupal\social_demo\Plugin\DemoContent

Code

protected function getEntry(array $item) {
  $entry = parent::getEntry($item);
  $entry['field_content_visibility'] = $item['field_content_visibility'];

  // Load term by name and set to node.
  if (!empty($item['field_topic_type'])) {
    $entry['field_topic_type'] = $this
      ->prepareTopicType($item['field_topic_type']);
  }

  // Load image by uuid and set to node.
  if (!empty($item['field_topic_image'])) {
    $entry['field_topic_image'] = $this
      ->prepareImage($item['field_topic_image']);
  }

  // Load attachments to node.
  if (!empty($item['field_files'])) {
    $entry['field_files'] = $this
      ->prepareAttachment($item['field_files']);
  }
  return $entry;
}