Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_type_alter.twig
1 /**
2  * Implements hook_entity_type_alter().
3  */
4 function {{ machine_name }}_entity_type_alter(array &$entity_types) {
5   /** @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */
6   // Set the controller class for nodes to an alternate implementation of the
7   // Drupal\Core\Entity\EntityStorageInterface interface.
8   $entity_types['node']->setStorageClass('Drupal\mymodule\MyCustomNodeStorage');
9 }