You are here

function bulk_update_fields_install in Bulk Update Fields 8.2

Implements hook_install().

File

./bulk_update_fields.install, line 25
Contains install and update functions for Bulk Update Fields.

Code

function bulk_update_fields_install() {
  foreach (\Drupal::entityTypeManager()
    ->getDefinitions() as $entity_type_machine_name => $entity_type) {
    _bulk_update_fields_create_action($entity_type_machine_name, $entity_type
      ->getLabel());
  }
}