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