You are here

function space::load in Spaces 6.3

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

Extending classes can use this method to load any associated data or objects. Return FALSE to abort the load process.

1 call to space::load()
space_user::load in spaces_user/plugins/space_user.inc
Override of load(). Load the user account object for this space and bail if it can't be loaded.
3 methods override space::load()
space_og::load in spaces_og/plugins/space_og.inc
Override of load().
space_taxonomy::load in spaces_taxonomy/plugins/space_taxonomy.inc
Override of load().
space_user::load in spaces_user/plugins/space_user.inc
Override of load(). Load the user account object for this space and bail if it can't be loaded.

File

plugins/space.inc, line 31

Class

space
Base class describing a space.

Code

function load() {
  return TRUE;
}