class spaces_controller_boxes in Boxes 7
Same name and namespace in other branches
- 6 plugins/spaces_controller_boxes.inc \spaces_controller_boxes
Spaces controller for boxes module.
Hierarchy
- class \spaces_controller_boxes extends \spaces_controller
Expanded class hierarchy of spaces_controller_boxes
2 string references to 'spaces_controller_boxes'
- boxes_spaces_plugins in ./
boxes.module - Implements hook_spaces_plugins().
- boxes_spaces_registry in ./
boxes.module - Implements hook_spaces_registry().
File
- plugins/
spaces_controller_boxes.inc, line 6
View source
class spaces_controller_boxes extends spaces_controller {
// Override of load_original_values
protected function load_original_values($id = NULL) {
if (empty($this->loaded_all['original'])) {
// TODO can we always rely on having export.inc loaded?
if (!isset($id)) {
$boxes = array();
foreach (ctools_export_load_object('box') as $box) {
$boxes[$box->delta] = $box;
}
$this->values['original'] = $boxes;
$this->loaded_all['original'] = TRUE;
}
elseif (!isset($this->loaded['original'][$id])) {
if ($box = ctools_export_load_object('box', 'names', array(
$id,
))) {
$this->values['original'][$id] = reset($box);
$this->loaded['original'][$id] = TRUE;
}
}
}
}
/**
* Override of the set() method.
*
* Remove flags used by to detect state and transflorm to stdClass so that the
* box configuration can be loaded regardless of whether the plugin is
* available.
*/
function set($id, $value) {
unset($value->new);
unset($value->export_type);
$box = new stdClass();
foreach ($value as $k => $v) {
$box->{$k} = $v;
}
parent::set($id, $box);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
spaces_controller_boxes:: |
protected | function | ||
spaces_controller_boxes:: |
function | Override of the set() method. |