function space_setting_home::__construct in Spaces 6
Same name and namespace in other branches
- 6.2 spaces.spaces.inc \space_setting_home::__construct()
Overrides space_setting::__construct
File
- ./
spaces.module, line 539
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';
}
}