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