You are here

function spaces_taxonomy_spaces_types in Spaces 6

Same name and namespace in other branches
  1. 6.2 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_spaces_types()

Implementation of hook_spaces_types().

File

spaces_taxonomy/spaces_taxonomy.module, line 183

Code

function spaces_taxonomy_spaces_types() {
  return array(
    'taxonomy' => array(
      'class' => 'space_taxonomy',
      'title' => t('Term space'),
      'custom prefixes' => TRUE,
    ),
  );
}