You are here

function bootstrap_languages_install in Bootstrap Languages 7

Implements hook_install().

File

./bootstrap_languages.install, line 11
Install, update, and uninstall functions for the bootstrap_languages module.

Code

function bootstrap_languages_install() {
  $block_default_settings = array(
    'show_all' => 1,
    'btn_type' => 'btn-default',
  );
  variable_set('bootstrap_languages_block_settings', $block_default_settings);
}