class draggableviews_handler in DraggableViews 6.3
Same name and namespace in other branches
- 7.2 handlers/draggableviews_handler.inc \draggableviews_handler
- 7 implementations/draggableviews_handler.inc \draggableviews_handler
Hierarchy
- class \draggableviews_handler
Expanded class hierarchy of draggableviews_handler
File
- implementations/
draggableviews_handler.inc, line 11 - The parent class of all draggableviews handlers.
View source
class draggableviews_handler {
var $view;
function init($field_name, &$view) {
$this->field_name = $field_name;
$this->view = $view;
$this->pager = $view->pager;
if ($field_name == $view->style_plugin->options['tabledrag_hierarchy']['field']) {
$this->type = 'hierarchy';
}
else {
$this->type = 'order';
}
}
function get($value) {
return $value;
}
function save($nid, $value) {
return FALSE;
}
function get_form_element($value, $attributes = array()) {
switch ($this->type) {
default:
$options = array();
for ($i = $this->range_start; $i <= $this->range_end; $i++) {
$options[$i] = $i;
}
return array(
'#type' => 'select',
'#name' => $attributes['field_name'],
'#value' => $value,
'#options' => $options,
'#attributes' => array(
'class' => $attributes['class'],
),
);
break;
case 'hierarchy':
return array(
'#type' => 'hidden',
'#name' => $attributes['field_name'],
'#value' => $value,
'#attributes' => array(
'class' => $attributes['class'],
),
);
}
}
function set_range($start, $end) {
$this->range_start = $start;
$this->range_end = $end;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
draggableviews_handler:: |
property | |||
draggableviews_handler:: |
function | 1 | ||
draggableviews_handler:: |
function | |||
draggableviews_handler:: |
function | 4 | ||
draggableviews_handler:: |
function | 4 | ||
draggableviews_handler:: |
function |