You are here

function spaces_og_spaces_types in Spaces 5.2

Same name and namespace in other branches
  1. 6 spaces_og/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.module, line 397

Code

function spaces_og_spaces_types() {
  return array(
    'og' => array(
      'class' => 'space_og',
      'title' => t('Group space'),
      'custom prefixes' => TRUE,
    ),
  );
}