You are here

function spaces_spaces_registry in Spaces 7.3

Same name and namespace in other branches
  1. 6.3 spaces.module \spaces_spaces_registry()
  2. 7 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',
      ),
    ),
  );
}