You are here

function _fe_block_get_machine_name in Features Extra 7

Same name and namespace in other branches
  1. 6 fe_block.module \_fe_block_get_machine_name()

Provided for backwards compatibility. Use fe_block_get_machine_name().

File

fe_block/fe_block.module, line 993
Provide features components for exporting core blocks and settings.

Code

function _fe_block_get_machine_name($bid) {
  debug(t('The function @function is deprecated.', array(
    '@function' => __FUNCTION__ . '()',
  )));
  return fe_block_get_machine_name($bid);
}