function _fe_block_get_bid in Features Extra 7
Same name and namespace in other branches
- 6 fe_block.module \_fe_block_get_bid()
Provided for backwards compatibility. Use fe_block_get_bid() instead.
File
- fe_block/
fe_block.module, line 1027 - Provide features components for exporting core blocks and settings.
Code
function _fe_block_get_bid($machine_name, $reset = FALSE) {
debug(t('The function @function is deprecated.', array(
'@function' => __FUNCTION__ . '()',
)));
return fe_block_get_bid($machine_name, $reset);
}