Lines Matching refs:schemas
33 protected $schemas = []; variable in dokuwiki\\plugin\\struct\\meta\\Search
94 $this->schemas[$schema->getTable()] = $schema;
504 $sqlBuilder->addSchemas($this->schemas);
529 return array_values($this->schemas);
548 $schema_list = array_keys($this->schemas);
552 $schema = $this->schemas[$table] ?? null;
568 if (!$this->schemas) throw new StructException('noschemas');
593 if (!$this->schemas) throw new StructException('noschemas');
594 $schema_list = array_keys($this->schemas);
626 if ($table !== null && isset($this->schemas[$table])) {
627 $schemas = [$table => $this->schemas[$table]];
629 $schemas = $this->schemas;
636 foreach ($schemas as $schema) {