You are here

config_provider.install in Configuration Provider 8

Same filename and directory in other branches
  1. 8.2 config_provider.install

Contains install and update functions for Configuration Provider.

File

config_provider.install
View source
<?php

/**
 * @file
 * Contains install and update functions for Configuration Provider.
 */

/**
 * Implements hook_install().
 */
function config_provider_install() {

  // Set a relatively high weight so ConfigProviderServiceProvider::alter()
  // will run after other modules' implementations.
  module_set_weight('config_provider', 100);
}

/**
 * Rebuild the container to add a service parameter.
 */
function config_provider_update_8101() {

  // Empty update to cause a cache rebuild so that the container is rebuilt.
}

Functions

Namesort descending Description
config_provider_install Implements hook_install().
config_provider_update_8101 Rebuild the container to add a service parameter.