Home
last modified time | relevance | path

Searched refs:table (Results 1001 – 1025 of 1203) sorted by path

1...<<414243444546474849

/plugin/struct/jsoneditor/
H A Dsetup.css9 #plugin__struct_editor div.jsoneditor table,
/plugin/struct/lang/fr/
H A Deditor_intro.txt5 Choisissez un schéma existant depuis la table des matières ou créez-en un nouveau.
/plugin/struct/meta/
H A DAccessDataValidator.php50 foreach ($tables as $table) {
51 $access = AccessTable::getPageAccess($table, $pageid);
52 $validation = $access->getValidator($data[$table]);
H A DAccessTableGlobal.php14 public function __construct($table, $pid, $ts = 0, $rid = 0) argument
16 parent::__construct($table, $pid, $ts, $rid);
143 $table = 'multi_' . $this->schema->getTable();
145 "DELETE FROM $table WHERE pid = ? AND rid = ? AND colref = ?",
H A DAccessTablePage.php49 $table = 'data_' . $this->schema->getTable();
58 $sql = "SELECT rev FROM $table $where ORDER BY rev DESC LIMIT 1";
H A DAccessTableSerial.php14 public function __construct($table, $pid, $ts = 0, $rid = 0) argument
19 parent::__construct($table, $pid, $ts, $rid);
H A DAggregationEditorTable.php36 $table = $this->columns[0]->getTable();
48 data-schema=\"$table\" data-searchconf=\"$config\">";
H A DAssignments.php8 * Manages the assignment of schemas (table names) to pages and namespaces.
67 * Add a new assignment pattern to the pattern table
70 * @param string $table
73 public function addPattern($pattern, $table)
77 $ok = (bool)$this->sqlite->query($sql, [$pattern, $table]);
81 $this->propagatePageAssignments($table);
88 * Remove an existing assignment pattern from the pattern table
91 * @param string $table
94 public function removePattern($pattern, $table)
98 $ok = (bool)$this->sqlite->query($sql, [$pattern, $table]);
71 addPattern($pattern, $table) global() argument
92 removePattern($pattern, $table) global() argument
174 assignPageSchema($page, $table) global() argument
187 deassignPageSchema($page, $table) global() argument
345 propagatePageAssignments($table) global() argument
[all...]
H A DCSVExporter.php25 * @param string $table
28 public function __construct($table, $type) argument
34 $search->addSchema($table);
H A DCSVImporter.php45 * @param string $table
49 public function __construct($table, $file, $type) argument
54 $this->schema = new Schema($table);
181 // prepare values for single value table
214 $table = $this->schema->getTable();
219 $helper->saveData($pid, [$table => $data], 'CSV data imported');
223 $access = AccessTable::getSerialAccess($table, $pid);
225 $access = AccessTable::getGlobalAccess($table);
H A DColumn.php12 * column reference to the data table.
29 /** @var string backreference to the table this column is part of */
30 protected $table; variable in dokuwiki\\plugin\\struct\\meta\\Column
38 * @param string $table
40 public function __construct($sort, AbstractBaseType $type, $colref = 0, $enabled = true, $table = '') argument
46 $this->table = $table;
74 * @return string the label prepended with the table name
78 if (!$this->table) throw new StructException('No table se
[all...]
H A DConfigParser.php200 [$table, $alias] = sexplode(' ', trim($part), 2, '');
201 $table = trim($table);
203 if (!$table) continue;
205 $schemas[] = [$table, $alias];
H A DPageColumn.php21 * @param string $table
23 public function __construct($sort, Page $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
50 if ($this->table) $col = 'data_' . $this->table . '.' . $col;
73 // so we do not prefix it with the table
H A DPublishedColumn.php15 * @param string $table
17 public function __construct($sort, Decimal $type, $table) argument
20 Column::__construct($sort, $type, 0, true, $table);
H A DQueryBuilder.php17 /** @var array (alias -> "table"|"join") keeps how tables were added, as table or join */
39 * @param string $tablealias The table to select from
86 * Adds the the table to the FROM statement part
88 * @param string $table the table to add
89 * @param string $alias alias for the table, blank for table name
91 public function addTable($table, $alias = '') argument
93 if ($alias === '') $alias = $table;
[all...]
H A DRevisionColumn.php21 * @param string $table
23 public function __construct($sort, DateTime $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
51 if ($this->table) $col = 'data_' . $this->table . '.' . $col;
69 // so we do not prefix it with the table
H A DRowColumn.php15 * @param string $table
17 public function __construct($sort, Decimal $type, $table) argument
20 Column::__construct($sort, $type, 0, true, $table);
H A DSchema.php12 * Represents the schema of a single data table and all its properties. It defines what can be stored in
13 * the represented data table and how those contents are formatted.
32 /** @var string name of the associated table */
33 protected $table = ''; variable in dokuwiki\\plugin\\struct\\meta\\Schema
53 * @param string $table The table this schema is for
56 public function __construct($table, $ts = 0) argument
65 $table = self::cleanTableName($table);
66 $this->table
153 cleanTableName($table) global() argument
[all...]
H A DSchemaBuilder.php17 * never be passed as $table anywhere!
32 * @var string The table name associated with the schema
34 protected $table = '';
37 * @var Schema the previously valid schema for this table
56 * @param string $table The table's name
57 * @param array $data The defining of the table (basically what get's posted in the schema editor form)
60 public function __construct($table, $data)
64 $this->table = $table;
33 protected $table = ''; global() variable in dokuwiki\\plugin\\struct\\meta\\SchemaBuilder
59 __construct($table, $data) global() argument
219 migrateSingleToMulti($table, $colref) global() argument
[all...]
H A DSchemaImporter.php17 * @param string $table
22 public function __construct($table, $json) argument
24 parent::__construct($table, []);
H A DSearch.php84 * @param string $table
87 public function addSchema($table, $alias = '')
89 $schema = new Schema($table);
91 throw new StructException('schema missing', $table);
547 [$colname, $table] = $this->resolveColumn($colname);
550 // no table given? assume the first is meant
551 if ($table === null) {
553 $table = $schema_list[0];
556 $schema = $this->schemas[$table] ?? null;
563 * Split a given column name into table an
88 addSchema($table, $alias = '') global() argument
[all...]
H A DSearchConfig.php177 $table = $column->getTable();
179 [$table, $label] = sexplode('.', $key, 2, '');
183 if ($table && $label) {
184 $schemaData = AccessTable::getPageAccess($table, $INFO['id']);
187 throw new StructException("column not in table", $label, $table);
H A DSummaryColumn.php21 * @param string $table
23 public function __construct($sort, AutoSummary $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
68 // so we do not prefix it with the table
H A DUserColumn.php11 * but the lasteditor column in the titles table.
22 * @param string $table
24 public function __construct($sort, User $type, $table = '') argument
27 parent::__construct($sort, $type, 0, true, $table);
69 // so we do not prefix it with the table
/plugin/struct/
H A Dprint.less2 table {
26 table.inline td {

1...<<414243444546474849