config_provider.install in Configuration Provider 8
Same filename and directory in other branches
Contains install and update functions for Configuration Provider.
File
config_provider.installView 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
Name | Description |
---|---|
config_provider_install | Implements hook_install(). |
config_provider_update_8101 | Rebuild the container to add a service parameter. |