domain_entity_type-1.0.0-rc2/domain_entity_type.install
domain_entity_type.install
<?php
/**
* @file
* Module install hooks.
*/
/**
* Implements hook_install().
*/
function domain_entity_type_install($is_syncing) {
// Install domain access content type during installation.
if (!\Drupal::moduleHandler()->moduleExists('det_node')) {
\Drupal::service('module_installer')->install(['det_node']);
}
}
