You are here

function config_provider_install in Configuration Provider 8

Same name and namespace in other branches
  1. 8.2 config_provider.install \config_provider_install()

Implements hook_install().

File

./config_provider.install, line 11
Contains install and update functions for Configuration Provider.

Code

function config_provider_install() {

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