You are here

function spaces_user_spaces_types in Spaces 6.2

Same name and namespace in other branches
  1. 5.2 spaces_user.module \spaces_user_spaces_types()
  2. 6 spaces_user/spaces_user.module \spaces_user_spaces_types()

Implementation of hook_spaces_types().

File

spaces_user/spaces_user.module, line 257

Code

function spaces_user_spaces_types() {
  return array(
    'user' => array(
      'class' => 'space_user',
      'title' => t('User space'),
      'custom prefixes' => FALSE,
      'base path' => 'user/%sid',
    ),
  );
}