function delta_blocks_install in Delta 7.3
Implements hook_install().
File
- delta_blocks/
delta_blocks.install, line 29 - Install/uninstall functions for the Delta blocks module.
Code
function delta_blocks_install() {
variable_set('delta_blocks_logo_linked', TRUE);
variable_set('delta_blocks_page_title_hidden', FALSE);
variable_set('delta_blocks_site_name_linked', TRUE);
variable_set('delta_blocks_site_name_hidden', FALSE);
variable_set('delta_blocks_site_slogan_hidden', FALSE);
variable_set('delta_blocks_branding_logo_linked', TRUE);
variable_set('delta_blocks_branding_logo_render', TRUE);
variable_set('delta_blocks_branding_site_name_linked', TRUE);
variable_set('delta_blocks_branding_site_name_hidden', FALSE);
variable_set('delta_blocks_branding_site_slogan_hidden', FALSE);
variable_set('delta_blocks_breadcrumb_title_hidden', TRUE);
variable_set('delta_blocks_breadcrumb_current', TRUE);
}