You are here

function spaces_og_spaces_types in Spaces 6

Same name and namespace in other branches
  1. 5.2 spaces_og.module \spaces_og_spaces_types()
  2. 6.2 spaces_og/spaces_og.module \spaces_og_spaces_types()

Implementation of hook_spaces_types().

File

spaces_og/spaces_og.module, line 448

Code

function spaces_og_spaces_types() {
  return array(
    'og' => array(
      'class' => 'space_og',
      'title' => t('Group space'),
      'custom purl' => TRUE,
      'base path' => 'node/%sid',
    ),
  );
}