function spaces_spaces_registry in Spaces 7
Same name and namespace in other branches
- 6.3 spaces.module \spaces_spaces_registry()
- 7.3 spaces.module \spaces_spaces_registry()
Implements hook_spaces_registry().
File
- ./
spaces.module, line 165
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',
),
),
);
}