protected function DemoGroup::getEntry in Open Social 8.2
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.3 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.4 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.5 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.6 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.7 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 8.8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 10.3.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 10.0.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 10.1.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
- 10.2.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::getEntry()
Makes an array with data of an entity.
Parameters
array $item: Array with items.
Return value
array Returns an array.
Overrides DemoContent::getEntry
1 call to DemoGroup::getEntry()
- DemoGroup::createContent in modules/
custom/ social_demo/ src/ DemoGroup.php - Creates content.
File
- modules/
custom/ social_demo/ src/ DemoGroup.php, line 134
Class
- DemoGroup
- Class DemoGroup.
Namespace
Drupal\social_demoCode
protected function getEntry(array $item) {
$entry = [
'uuid' => $item['uuid'],
'langcode' => $item['langcode'],
'type' => $item['type'],
'label' => $item['label'],
'field_group_description' => [
[
'value' => $item['description'],
'format' => 'basic_html',
],
],
'uid' => $item['uid'],
'created' => $item['created'],
'changed' => $item['changed'],
'field_group_image' => $item['image'],
'field_group_files' => $item['files'],
];
return $entry;
}