You are here

entity_translation_unified_form.install in Entity Translation Unified Form 8

Same filename and directory in other branches
  1. 7 entity_translation_unified_form.install

Install file for entity translated unified form.

File

entity_translation_unified_form.install
View 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