function spaces_spaces_registry in Spaces 6.3
Same name and namespace in other branches
- 7.3 spaces.module \spaces_spaces_registry()
- 7 spaces.module \spaces_spaces_registry()
Implementation of hook_spaces_registry().
File
- ./
spaces.module, line 162
Code
function spaces_spaces_registry() {
return array(
'controllers' => array(
'variable' => array(
'title' => t('Variable'),
'plugin' => 'spaces_controller_variable',
),
'context' => array(
'title' => t('Context'),
'plugin' => 'spaces_controller_context',
),
),
);
}