You are here

function bootstrap_library_install in Bootstrap Library 7

Implementation of hook_install(). This will create our system variable defaults. The benefit is that we do not need to pass defaults to variable_get(), which allows centralization of defaults.

File

./bootstrap_library.install, line 41
bootstrap_library.install Installation and update functions for the Bootstrap Library Module

Code

function bootstrap_library_install() {
  variable_set('bootstrap_library_settings', _bootstrap_library_defaults());
}