You are here

function space::__construct in Spaces 6.3

Same name and namespace in other branches
  1. 5.2 spaces.module \space::__construct()
  2. 6 spaces.module \space::__construct()
  3. 6.2 spaces.module \space::__construct()
  4. 7.3 plugins/space.inc \space::__construct()
  5. 7 plugins/space.inc \space::__construct()

Constructor.

File

plugins/space.inc, line 21

Class

space
Base class describing a space.

Code

function __construct($type, $id = NULL) {
  $this->type = $type;
  $this->id = $id;
  $this
    ->get_controllers();
}