entity_translation_unified_form.install in Entity Translation Unified Form 8
Same filename and directory in other branches
Install file for entity translated unified form.
File
entity_translation_unified_form.installView source
<?php
/**
* @file
* Install file for entity translated unified form.
*/
/**
* Implements hook_uninstall().
*/
function entity_translation_unified_form_uninstall() {
foreach (node_type_get_names('names') as $type => $type_name) {
\Drupal::state()
->delete('entity_translation_unified_form_enable_' . $type);
}
}
Functions
Name | Description |
---|---|
entity_translation_unified_form_uninstall | Implements hook_uninstall(). |