/plugin/farmsync/meta/ |
H A D | StructUpdates.php | 21 $schemas = array(); 28 $schemas[] = $schemaName; 34 $schemas = $this->farm_util->getAnimalStructSchemasJSON($this->source, $schemas); 36 array_walk($schemas, function (&$value, $key) {$value = array($key, $value);}); 38 return $schemas;
|
H A D | FarmSyncUtil.php | 401 $schemas = $struct->getAllSchemasList(); 403 return $schemas; 412 foreach ($schemas as $key => $assignment) { 414 unset($schemas[$key]); 419 return $schemas; 445 foreach ($schemas as $key => $schema) { 447 $schemas[$schema]->user = 'FARMSYNC'; 448 $schemas[$schema]->id = 0; 449 $schemas[$schema] = json_encode($schemas[$schema]); 450 unset($schemas[$key]); [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/ |
H A D | ListSchemasResponse.php | 47 public function setSchemas($schemas) argument 49 $this->schemas = $schemas; 56 return $this->schemas;
|
/plugin/struct/db/ |
H A D | update0009.sql | 7 INSERT INTO schemas_temp (id, tbl, ts) SELECT id, tbl, ts FROM schemas; 9 DROP TABLE schemas; 11 CREATE TABLE schemas ( table 19 INSERT INTO schemas (id, tbl, ts) SELECT id, tbl, ts FROM schemas_temp;
|
H A D | update0014.sql | 11 INSERT INTO schemas_temp (id, tbl, ts, islookup, user, comment, editors) SELECT id, tbl, ts, islookup, user, comment, editors FROM schemas; 13 DROP TABLE schemas; 15 CREATE TABLE schemas ( 25 INSERT INTO schemas (id, tbl, ts, islookup, user, comment, config) SELECT id, tbl, ts, islookup, user, comment, '{"allowed editors":"' || editors || '"}' FROM schemas_temp;
|
H A D | update0001.sql | 2 CREATE TABLE schemas ( table 20 sid INTEGER REFERENCES schemas (id),
|
H A D | update0010.sql | 1 ALTER TABLE schemas ADD COLUMN islookup BOOLEAN NOT NULL DEFAULT 0;
|
H A D | update0011.sql | 1 ALTER TABLE schemas ADD COLUMN editors NOT NULL DEFAULT '';
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
H A D | Schemas.php | 65 public function setSchemas($schemas) argument 67 $this->schemas = $schemas; 74 return $this->schemas;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/ |
H A D | SchemaPackage.php | 57 public function setSchemas($schemas) argument 59 $this->schemas = $schemas; 66 return $this->schemas;
|
/plugin/struct/ |
H A D | helper.php | 57 $schemas = $assignments->getPageAssignments($page, false); 59 $schemas = [$schema]; 63 foreach ($schemas as $schema) { 76 * the given schemas are no longer assigned to that page. 161 * Get info about existing schemas 170 $schemas = Schema::getAll(); 172 $schemas = [$schema]; 176 foreach ($schemas as $table) {
|
H A D | remote.php | 67 * the given schemas are no longer assigned to that page. 94 * Get info about existing schemas columns 111 $schemas = $this->hlp::getSchema($schema ?: null); 112 foreach ($schemas as $name => $schema) { 132 * @param array $schemas array of strings with the schema-names 140 public function getAggregationData(array $schemas, array $cols, array $filter = [], $sort = '') 142 $schemaLine = 'schema: ' . implode(', ', $schemas); 149 // schemas, cols, REV?, filter, order 136 getAggregationData(array $schemas, array $cols, array $filter = [], $sort = '') global() argument
|
/plugin/struct/meta/ |
H A D | Search.php | 32 /** @var Schema[] list of schemas to query */ 33 protected $schemas = []; variable in dokuwiki\\plugin\\struct\\meta\\Search 82 * Call multiple times for multiple schemas. 94 $this->schemas[$schema->getTable()] = $schema; 508 $sqlBuilder->addSchemas($this->schemas); 527 * All the schemas currently added 533 return array_values($this->schemas); 552 $schema_list = array_keys($this->schemas); 556 $schema = $this->schemas[$table] ?? null; 572 if (!$this->schemas) thro [all...] |
H A D | ConfigParser.php | 28 'schemas' => [], 58 $this->config['schemas'] = array_merge($this->config['schemas'], $this->parseSchema($val)); 197 $schemas = []; 205 $schemas[] = [$table, $alias]; 207 return $schemas;
|
H A D | SearchCloud.php | 26 reset($this->schemas); 27 $schema = current($this->schemas);
|
/plugin/structacl/ |
H A D | action.php | 44 $schemas = $assignments->getPageAssignments($ID); 46 if (empty($schemas)) return; 51 if (!in_array($schemaName, $schemas)) {
|
/plugin/structodt/ |
H A D | helper.php | 43 * @param $schemas 98 * @param $schemas 202 * @param $schemas 206 public function getSearch($schemas, &$first_schema) { argument 208 if (!empty($schemas)) foreach ($schemas as $schema) { 226 * @param string|array $schemas 230 public function getRows($schemas, &$first_schema, $filters=array()) argument 232 $search = $this->getSearch($schemas, $first_schema); 247 * @param $schemas [all...] |
/plugin/struct/lang/en/ |
H A D | assignments_intro.txt | 3 Here you can define patterns to automatically assign schemas to pages. Whenever a page matches one of the patterns here, the appropiate schemas will be shown.
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/ |
H A D | ObjectWithXmlNamespaces.yml | 7 gd: http://schemas.google.com/g/2005 21 namespace: http://schemas.google.com/g/2005
|
H A D | BlogPost.yml | 5 gd: http://schemas.google.com/g/2005 32 namespace: http://schemas.google.com/g/2005
|
/plugin/swarmwebhook/webhooks/ |
H A D | Zapier.php | 77 $schemas = Schema::getAll('lookup'); 78 if (!in_array('swarm', $schemas)) {
|
/plugin/struct/action/ |
H A D | migration.php | 87 // get latest versions of schemas with islookup property 88 $sql = "SELECT MAX(id) AS id, tbl, islookup FROM schemas 91 $schemas = $sqlite->queryAll($sql); 95 // Step 1: move original data to temporary tables and create new ones with modified schemas 120 foreach ($schemas as $schema) { 205 // Step 4: remove islookup in schemas table 208 AND name = 'schemas'"; 213 $s = 'ALTER TABLE schemas RENAME TO temp_schemas'; 221 $s = 'INSERT INTO schemas SELECT id, tbl, ts, user, comment, config FROM temp_schemas'; 239 $sql = "SELECT MAX(id) AS id, tbl FROM schemas [all...] |
/plugin/struct/admin/ |
H A D | assignments.php | 144 $schemas = helper_plugin_struct::getSchema(); 145 foreach ($schemas as $schema) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
H A D | Pubsub.php | 70 'schemas', 74 'path' => 'v1/{+parent}/schemas', 126 'path' => 'v1/{+parent}/schemas', 168 'path' => 'v1/{+parent}/schemas:validate', 178 'path' => 'v1/{+parent}/schemas:validateMessage',
|
/plugin/structstatus/ |
H A D | action.php | 64 $schemas= $sqlite->queryAll($sql); 71 foreach ($schemas as $schema) {
|