Lines Matching refs:config
16 protected $config = [ variable in dokuwiki\\plugin\\struct\\meta\\ConfigParser
59 … $this->config['schemas'] = array_merge($this->config['schemas'], $this->parseSchema($val));
65 $this->config['cols'] = $this->parseValues($val);
68 $this->config['sepbyheaders'] = (bool)$val;
73 $this->config['headers'] = $this->parseValues($val);
76 $this->config['align'] = $this->parseAlignments($val);
80 $this->config['widths'] = $this->parseWidths($val);
83 $this->config['min'] = abs((int)$val);
87 $this->config['limit'] = abs((int)$val);
93 $this->config['sort'] = array_merge($this->config['sort'], $sorts);
105 $this->config['filter'][] = $flt;
109 $this->config['dynfilters'] = (bool)$val;
112 $this->config['rownumbers'] = (bool)$val;
115 $this->config['summarize'] = (bool)$val;
118 $this->config['csv'] = (bool)$val;
122 $this->config['target'] = cleanID($val);
126 $this->config['nesting'] = (int) $val;
129 $this->config['index'] = (int) $val;
133 $this->config['classes'] = $this->parseClasses($val);
138 $this->config['actcol'] = (int) $val;
141 $data = ['config' => &$this->config, 'key' => $key, 'val' => $val];
151 $this->config['headers'] = (array)$this->config['headers'];
152 $cnth = count($this->config['headers']);
153 $cntf = count($this->config['cols']);
155 $this->config['headers'][] = null;
158 $cnta = count($this->config['align']);
160 $this->config['align'][] = null;
171 return $this->config;