You are here

function space_type::title in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 plugins/space_type.inc \space_type::title()
  2. 7 plugins/space_type.inc \space_type::title()

Get the title for this space.

Return value

The string title for this space.

3 methods override space_type::title()
space_og::title in spaces_og/plugins/space_og.inc
Override of title().
space_taxonomy::title in spaces_taxonomy/plugins/space_taxonomy.inc
Override of title().
space_user::title in spaces_user/plugins/space_user.inc
Override of title().

File

plugins/space_type.inc, line 15

Class

space_type
Common functionality for space types that implement access, routing, delegated Views filtering and feature management concepts. Examples: spaces_og, spaces_user, spaces_taxonomy.

Code

function title() {
  return '';
}