function spaces_block_info in Spaces 7
Same name and namespace in other branches
- 7.3 spaces.module \spaces_block_info()
Implements hook_block_info().
File
- ./
spaces.module, line 816
Code
function spaces_block_info() {
if (module_exists('jquery_ui')) {
return array(
'menu_editor' => array(
'info' => t('Reorder menu'),
'admin' => TRUE,
),
);
}
return array();
}