function spaces_user_spaces_registry in Spaces 7
Same name and namespace in other branches
- 6.3 spaces_user/spaces_user.module \spaces_user_spaces_registry()
- 7.3 spaces_user/spaces_user.module \spaces_user_spaces_registry()
Implements hook_spaces_registry().
File
- spaces_user/
spaces_user.module, line 56
Code
function spaces_user_spaces_registry() {
return array(
'types' => array(
'user' => array(
'title' => t('User space'),
'plugin' => 'space_user',
'path' => 'user/%user',
),
),
);
}