Lines Matching refs:column

18     /** @var bool whether first headline/title is shown in the page column */
22 * @var array with entries: 'columnname' => bool/int enabled/disable column, something also config setting
25 public $column = [];
121 $this->column = [
143 'desc' => '(optional) adds an extra column for plugin data',
146 'column key' => 'string'
151 'desc' => '(optional) override value of an existing column, value equal to false disables column',
153 'column key' => 'string',
161 'column key' => 'string',
189 * (optional) Adds an extra column named $col for plugin $plugin.
190 * The data for the extra column is provided via:
198 * @param string $col column name. Assumption: unique between all builtin columns and plugin supplied columns
202 //prevent duplicates if adding a column of already listed plugins
206 $this->column[$col] = true;
210 * (optional) Allow to override the column values e.g. to disable a column
212 * @param string $col column name
213 * @param int|bool $value must evaluate to false/true for dis/enabling column. Sometimes value is used for specific setting
214 * @see $column
218 if (isset($this->column[$col])) {
219 $this->column[$col] = $value;
227 * @see $column the keys of $header should match the keys of $column
238 * (Optional) Overrides standard values for style, showheader and show(column) settings
243 * for dis/enabling header: '(no)header', and show titel for page column with '(no)firsthl',
245 * for dis/enabling columns: accepts keys of $column, e.g. default: '(no)date', 'user', 'desc', 'summary',
297 // $flag should be an existing column, not checked here as addColumn() is maybe called later then setFlags()?
310 /** @see $column array, enable/disable columns */
318 if (isset($this->column[$flag]) && $flag !== 'page') {
319 $this->column[$flag] = $value;
372 if (!$this->column[$col]) continue;
375 $this->column[$col] = false;
384 //image column first
385 if ($this->column['image']) {
393 if ($this->column[$col]) {
403 if ($this->column[$col] && $col != 'image') {
451 if (!empty($this->column['date'])) {
454 if (!empty($this->column['user'])) {
457 if (!empty($this->column['desc'])) {
460 if (!empty($this->column['summary'])) {
557 //image column first
558 if (!empty($this->column['image'])) {
563 if (!empty($this->column['date'])) {
566 if (!empty($this->column['user'])) {
569 if (!empty($this->column['desc'])) {
572 if (!empty($this->column['diff'])) {
575 if (!empty($this->column['summary'])) {
580 if (!empty($this->column[$col]) && $col != 'image') {
692 * Internal function to get user column as set in 'showuseras' config option.
716 $max = $this->column['desc'];
762 * @param string $col column name. Before not provided to td of plugin. Since 2022. Allows different columns per plugin.
885 switch ($this->column['user']) {
924 if ($this->column['date'] == 2) {