You are here

config_split.install in Configuration Split 8

Same filename and directory in other branches
  1. 2.0.x config_split.install

Install, update and uninstall functions for the config_split module.

File

config_split.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the config_split module.
 */

/**
 * Enable the config_filter module.
 */
function config_split_update_8001() {
  \Drupal::getContainer()
    ->get('module_installer')
    ->install([
    'config_filter',
  ]);
}

Functions

Namesort descending Description
config_split_update_8001 Enable the config_filter module.