function spaces_taxonomy_spaces_registry in Spaces 6.3
Same name and namespace in other branches
- 7.3 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_spaces_registry()
- 7 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_spaces_registry()
Implementation of hook_spaces_registry().
File
- spaces_taxonomy/
spaces_taxonomy.module, line 55
Code
function spaces_taxonomy_spaces_registry() {
return array(
'types' => array(
'taxonomy' => array(
'title' => t('Term space'),
'plugin' => 'space_taxonomy',
'path' => 'taxonomy/term/%',
),
),
);
}