Home
last modified time | relevance | path

Searched refs:schema (Results 76 – 100 of 172) sorted by relevance

1234567

/plugin/structcombolookup/
H A Daction.php64 $schema = $search->getSchemas()[0];
65 if ($schema->isLookup()) {
/plugin/structacl/
H A Daction.php55 $schema = new \dokuwiki\plugin\struct\meta\Schema($schemaName);
59 $col = $schema->findColumn($field);
/plugin/structat/meta/
H A DSearchConfigAt.php61 foreach($this->schemas as $schema) {
62 $datatable = 'data_' . $schema->getTable();
85 AND schema_assignments.tbl = '{$schema->getTable()}'"
/plugin/prosemirror/parser/
H A DImageNode.php76 $node = new \dokuwiki\plugin\prosemirror\schema\Node('image');
90 $node->addMark(new \dokuwiki\plugin\prosemirror\schema\Mark($mark));
101 \dokuwiki\plugin\prosemirror\schema\Node $node,
H A DLinkNode.php90 $linkNode = new \dokuwiki\plugin\prosemirror\schema\Node('link');
121 $linkNode->addMark(new \dokuwiki\plugin\prosemirror\schema\Mark($mark));
/plugin/struct/action/
H A Dbureaucracy.php23 * submitted through the bureaucracy form to all newly created pages (if the schema applies).
26 * schema to the form. The struct_field type is added through standard naming convention - see
46 * Load a whole schema as fields
64 $schema = new Schema($helper->opt['label']);
65 if (!$schema->getId()) {
66 msg('This schema does not exist', -1);
70 foreach ($schema->getColumns(false) as $column) {
104 $search->addSchema($config['schema']);
177 // make sure this schema is assigned
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DTable.php600 public function setSchema(TableSchema $schema) argument
602 $this->schema = $schema;
609 return $this->schema;
/plugin/prosemirror/
H A DREADME.md43 - `renderer.php` uses the classes `NodeStack` `Node` and `Mark` in `schema` to do its job
47 - Prosemirror parses that json in `script/main.js` according to the schema defined in
48 `script/schema.js` and creates its `doc`-Node from it.
87 - the schema
97 1. Testing the validity of the Prosemirror JSON against the schema (`script/schema.js`) in `_jstest/test.js`
/plugin/mantis/lib/
H A Dclass.xmlschema.php18 var $schema = ''; variable in nusoap_xmlschema
49 * @param string $schema schema document URI
54 function nusoap_xmlschema($schema='',$xml='',$namespaces=array()){ argument
58 $this->schema = $schema;
66 if($schema != ''){
67 $this->debug('initial schema file: '.$schema);
68 $this->parseFile($schema, 'schema');
772 $str .= " xmlns=\"".$this->schema['targetNamespace']."\"";
/plugin/bez/syntax/
H A Dstruct.php90 $schema = $data['schemas'][0][0];
94 $factory = $model->factory($schema);
/plugin/struct/
H A Ddeleted.files58 _test/json/schema1.schema.json
59 _test/json/schema2.schema.json
/plugin/structnotification/db/
H A Dupdate0001.sql3 schema TEXT NOT NULL, field
/plugin/struct/meta/
H A DSchema.php12 * Represents the schema of a single data table and all its properties. It defines what can be stored in
15 * It can be initialized with a timestamp to access the schema as it looked at that particular point in time.
26 /** @var int The ID of this schema */
29 /** @var string the user who last edited this schema */
53 * @param string $table The table this schema is for
54 * @param int $ts The timestamp for when this schema was valid, 0 for current
70 // load info about the schema itself
87 $schema = $this->sqlite->queryAll($sql, $opt);
90 if (!empty($schema)) {
91 $result = array_shift($schema);
[all...]
/plugin/semantic/
H A Dhelper.php92 return ((isset($this->meta['plugin']['semantic']['schema.org']['type']))
93 ? $this->meta['plugin']['semantic']['schema.org']['type']
/plugin/struct/lang/en/
H A Dclear_intro.txt1 **WARNING:** This will clear **all** data that has ever been saved for this schema! There is no going back!
/plugin/confmanager/lang/nl/
H A Dscheme.txt1 …RLs maar alleen voor bekende protocollen. [[doku>nl:urlschemes|Meer informatie over URL schema's]].
/plugin/schemadata/
H A Dplugin.info.txt6 desc A Plugin to use the Content Negotiation Feature of datacite to get the schema.org metadata i…
/plugin/prosemirror/schema/
H A DMark.php3 namespace dokuwiki\plugin\prosemirror\schema;
8 * @package dokuwiki\plugin\prosemirror\schema
H A DNodeStack.php3 namespace dokuwiki\plugin\prosemirror\schema;
/plugin/structjoin/types/
H A DJoin.php152 $schema = 'data_' . $this->config['schema'];
179 $schema = 'data_' . $this->config['schema'];
/plugin/structstatus/
H A DStatus.php105 $schema = 'data_' . $this->config['schema'];
135 $tablealias, $schema, $rightalias,
/plugin/struct/helper/
H A Dfield.php219 * Tries to find the correct column and schema
229 throw new StructException('Field \'%s\' not given in schema.field form', $colname);
231 $schema = new Schema($table);
232 return $schema->findColumn($label);
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Djson.worker.js.map1schema);\n });\n }\n jsonValidation.configure(settings);\n …
/plugin/diagramsnet/lib/js/diagramly/
H A DNotionClient.js306 nameField = this.getTitle(folderObj.schema.properties).key;
311 folderObj.schema.properties[this.xmlField] = {
318 title: folderObj.schema.title,
319 properties: folderObj.schema.properties
806 fn({id: itemId, drawioReady: drawioReady, schema: db});
/plugin/structodt/
H A Daction.php170 $schema = $INPUT->str('schema');
177 $row = $helper->getRow($schema, $pid, $rev, $rid);
209 $schemas = $INPUT->arr('schema');

1234567