1 block.module | block_config_info() |
Implements hook_config_info().
File
- core/
modules/ block/ block.module, line 88 - Provides the ability to create reusable custom blocks.
Code
function block_config_info() {
$prefixes['block.custom'] = array(
'name_key' => 'delta',
'label_key' => 'info',
'group' => t('Custom Blocks'),
);
return $prefixes;
}