You are here

function spaces_user_spaces_types in Spaces 5.2

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

Implementation of hook_spaces_types().

File

./spaces_user.module, line 245

Code

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