Lines Matching refs:data

41             'data' => $this->searchConfig->getRows()
68 // actual data
95 $this->renderer->info['struct_table_hash'] = md5(var_export($this->data, true));
159 if (!empty($this->data['rownumbers'])) {
168 if (isset($this->data['headers'][$num])) {
169 $header = $this->data['headers'][$num];
193 if (isset($this->data['widths'][$num]) && $this->data['widths'][$num] != '-') {
194 $width = ' style="min-width: ' . $this->data['widths'][$num] . ';' .
195 'max-width: ' . $this->data['widths'][$num] . ';"';
198 // prepare data attribute for inline edits
203 $data = 'data-field="' . hsc($column->getFullQualifiedLabel()) . '"';
205 $data = '';
225 $this->renderer->doc .= "<th $width $data>";
247 if (!$this->data['dynfilters']) return false;
259 if (empty($this->data['dynfilters'])) return;
268 if ($this->data['rownumbers']) {
316 * Display the actual table data
321 $data = [
326 'data' => $this->data,
330 $evt = new Event('PLUGIN_STRUCT_AGGREGATIONTABLE_RENDERRESULTROW', $data);
348 // add data attribute for inline edit
354 $this->renderer->doc .= ' data-pid="' . hsc($pid) . '" data-rev="' . $rev . '" data-rid="' . $rid . '">';
358 if (!empty($this->data['rownumbers'])) {
366 $align = $this->data['align'][$colnum] ?? null;
372 if (!empty($this->data['summarize']) && is_numeric($value->getValue())) {
388 $this->renderer->tablecell_open(count($this->columns) + $this->data['rownumbers'], 'center');
399 if (empty($this->data['summarize'])) return;
408 if ($this->data['rownumbers']) {
415 $this->renderer->tableheader_open(1, $this->data['align'][$i]);
441 $this->renderer->tableheader_open((count($this->columns) + ($this->data['rownumbers'] ? 1 : 0)));
477 if (empty($this->data['csv'])) return;