You are here

function space_setting_home::__construct in Spaces 6.2

Same name and namespace in other branches
  1. 6 spaces.module \space_setting_home::__construct()

Overrides space_setting::__construct

File

./spaces.spaces.inc, line 8

Class

space_setting_home
Provides a homepage setting for each space.

Code

function __construct($id = NULL) {
  if ($id) {
    $this->id = $id;
  }
  else {
    $this->id = 'home';
  }
}