-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDrupalDataTable.inc
More file actions
123 lines (112 loc) · 3.31 KB
/
Copy pathDrupalDataTable.inc
File metadata and controls
123 lines (112 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
Class DrupalDataTable{
private $headers = array();
private $attributes = array();
private $rows = array();
private $variables = array();
private $build = array();
public function __construct() {}
public function attributes($features) {
foreach ($features as $attrKey => $value) {
$this->addAttribute($attrKey, $value);
}
return $this;
}
public function attribute($attrKey, $value) {
$this->addAttribute($attrKey, $value);
return $this;
}
protected function addAttribute($attrKey, $value) {
$OptionList = $this->getOptionList();
$conditionMet = false;
if (isset($OptionList[$attrKey]) && is_array($OptionList[$attrKey])) {
foreach ($OptionList[$attrKey] as $requiredItems) {
if (isset($this->attributes[$requiredItems]) || isset($features[$requiredItems])) {
$conditionMet = true;
}
}
} else if (in_array($attrKey, $OptionList)) {
$conditionMet = true;
}
if ($conditionMet) {
$this->attributes[$attrKey] = $value;
}
}
public function header($title, $type = 'string', $sortable = true, $searchable = true, $width = '10') {
$this->headers[] = array(
'data' => t($title),
'datatable_options' => array(
'sTitle' => $title,
'sType' => $type,
'bSortable' => $sortable,
'bSearchable' => $searchable,
'sWidth' => $width . '%'
)
);
return $this;
}
public function data($rows = array()) {
$this->rows = $rows;
return $this;
}
public function theme() {
$this->variables = array(
'attributes' => array(
'datatable_options' => $this->attributes
),
'header' => $this->headers,
'rows' => array()
);
return $this;
}
public function render() {
$this->build = array(
'#theme' => 'datatable',
'#attributes' => array(
'datatable_options' => $this->attributes
),
'#header' => $this->headers,
'#rows' => array()
);
return $this;
}
public function output($type='theme'){
if($type = 'render'){
if(empty($this->build)){
$this->render();
}
return render($this->build);
} else {
if(empty($this->variables)){
$this->theme();
}
return theme('datatable', $this->variables);
}
}
protected function getOptionList() {
$OptionList = array(
'bAutoWidth',
'bDeferRender',
'bFilter',
'bInfo',
'bJQueryUI',
'bLengthChange',
'bPaginate',
'bProcessing',
'scrollX',
'scrollY',
'bServerSide' => array(
'bServerSide',
'sAjaxSource'
),
'bSort',
'bSortClasses',
'bStateSave',
'sScrollX',
'sScrollY',
'sAjaxSource',
'fnDrawCallback'
);
return $OptionList;
}
}