function _fe_block_theme_specific_defaults in Features Extra 7
Helper function for filtering theme specific settings.
Return value
array An array of default settings, keyed by name.
See also
_fe_block_get_global_settings()
_fe_block_get_theme_specific_settings()
2 calls to _fe_block_theme_specific_defaults()
- _fe_block_get_global_settings in fe_block/
fe_block.module - Retrieve the global (non-theme-specific) part of a block definition.
- _fe_block_get_theme_specific_settings in fe_block/
fe_block.module - Helper function to get the theme specific settings for a block.
File
- fe_block/
fe_block.module, line 278 - Provide features components for exporting core blocks and settings.
Code
function _fe_block_theme_specific_defaults() {
return array(
'theme' => '',
'status' => '',
'weight' => 0,
'region' => '',
'visibility' => 0,
'pages' => 0,
'title' => 0,
'roles' => array(),
);
}