Home
last modified time | relevance | path

Searched refs:Column (Results 1 – 25 of 108) sorted by last modified time

12345

/plugin/struct/meta/
H A DAccessTable.php43 * @var array Column names for the single-value insert/update
376 * @param Column $column
H A DAggregationCloud.php
H A DAggregationList.php
H A DAggregationTable.php174 if (is_a($column, 'dokuwiki\plugin\struct\meta\Column')) {
H A DAggregationValue.php15 * @var Column the column to be displayed
H A DCSVExporter.php57 * @param Column[] $columns
H A DCSVImporter.php25 /** @var Column[] The single values to store index => col */
115 $pidCol = new Column(0, $pageType, 0, true, $this->schema->getTable());
163 * @param Column $col the column of that value
167 protected function validateValue(Column $col, &$rawvalue)
H A DCSVPageImporter.php62 function ($keys, Column $col) {
123 * @param Column $col
127 protected function validateValue(Column $col, &$rawvalue)
H A DCSVSerialImporter.php66 * @param Column $col
70 protected function validateValue(Column $col, &$rawvalue)
H A DColumn.php9 * Class Column
19 class Column class
33 * Column constructor.
H A DPageColumn.php14 class PageColumn extends Column
H A DPublishedColumn.php8 * Published Column
20 Column::__construct($sort, $type, 0, true, $table);
H A DRevisionColumn.php14 class RevisionColumn extends Column
H A DRowColumn.php8 * Like a Page Column but for Lookups using a decimal type
20 Column::__construct($sort, $type, 0, true, $table);
H A DSchema.php35 /** @var Column[] all the colums */
110 $typeclasses = Column::allTypes();
126 $column = new Column(
321 * @return Column[]
328 static fn(Column $col) => $col->isEnabled()
341 * @return bool|Column
H A DSchemaEditor.php67 $form->addHTML($this->adminColumn('new1', new Column($this->schema->getMaxsort() + 10, new Text()), 'new'));
110 * @param Column $col
115 protected function adminColumn($column_id, Column $col, $key = 'cols')
143 $types = array_keys(Column::allTypes());
H A DSearch.php35 /** @var Column[] list of columns to select */
195 * @return array|null [Column col, string|string[] value, string comp, string op]
476 static fn($pageidAndRevOnly, Column $col) => $pageidAndRevOnly && ($col->getTid() == 0),
519 * @return Column[]
593 * @return bool|Column
H A DSearchConfigParameters.php61 * @param string|Column $column
66 if (!is_a($column, Column::class)) {
70 /** @var Column $column */
77 * @param string|Column $column
119 * @param string|Column $column
H A DSummaryColumn.php14 class SummaryColumn extends Column
H A DUserColumn.php15 class UserColumn extends Column
H A DValue.php14 /** @var Column */
35 * @param Column $column
38 public function __construct(Column $column, $value)
45 * @return Column
H A DValueValidator.php29 * @param Column $col the column of that value
33 public function validateValue(Column $col, &$rawvalue)
/plugin/struct/types/
H A DAbstractBaseType.php6 use dokuwiki\plugin\struct\meta\Column;
18 * part of a column definition as defined in meta\Column
23 * @see Column
55 * @var null|Column the column context this type is part of
200 * @return Column
214 * @param Column $context
5 use dokuwiki\plugin\struct\meta\Column; global() alias
H A DAbstractMultiBaseType.php12 * @see Column
H A DLookup.php5 use dokuwiki\plugin\struct\meta\Column; alias
21 /** @var Column caches the referenced column */
41 * @return Column|false
45 if ($this->column instanceof Column) return $this->column;
55 * @return Column|false

12345