Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_bundle_field_info.twig
1 /**
2  * Implements hook_entity_bundle_field_info().
3  */
4 function {{ machine_name }}_entity_bundle_field_info(\Drupal\Core\Entity\EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) {
5   // Add a property only to nodes of the 'article' bundle.
6   if ($entity_type->id() == 'node' && $bundle == 'article') {
7     $fields = [];
8     $fields['mymodule_text_more'] = BaseFieldDefinition::create('string')
9       ->setLabel(t('More text'))
10       ->setComputed(TRUE)
11       ->setClass('\Drupal\mymodule\EntityComputedMoreText');
12     return $fields;
13   }
14 }