You are here

function spaces_og_spaces_registry in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 spaces_og/spaces_og.module \spaces_og_spaces_registry()
  2. 7 spaces_og/spaces_og.module \spaces_og_spaces_registry()

Implementation of hook_spaces_registry().

File

spaces_og/spaces_og.module, line 76

Code

function spaces_og_spaces_registry() {
  return array(
    'types' => array(
      'og' => array(
        'title' => t('Group space'),
        'plugin' => 'space_og',
        'path' => 'node/%node',
      ),
    ),
  );
}