public static MenuLinkContent::preCreate(EntityStorageInterface $storage, array &$values)
Changes the values of an entity before it is created.
Load defaults for example.
Parameters
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.
mixed[] $values: An array of values to set, keyed by property name. If the entity type has bundles the bundle key has to be specified.
Overrides Entity::preCreate
File
- core/modules/menu_link_content/src/Entity/MenuLinkContent.php, line 172
Class
- MenuLinkContent
- Defines the menu link content entity class.
Namespace
Drupal\menu_link_content\Entity
Code
1 2 3 | public static function preCreate(EntityStorageInterface $storage , array & $values ) { $values += [ 'bundle' => 'menu_link_content' ]; } |
Please login to continue.