| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/Resource/ |
| D | Schemas.php | 20 use Google\Service\Directory\Schema; alias 52 * @return Schema 58 return $this->call('get', [$params], Schema::class); 64 * @param Schema $postBody 66 * @return Schema 68 public function insert($customerId, Schema $postBody, $optParams = []) 72 return $this->call('insert', [$params], Schema::class); 92 * @param Schema $postBody 94 * @return Schema 96 public function patch($customerId, $schemaKey, Schema $postBody, $optParams = []) [all …]
|
| /plugin/struct/_test/mock/ |
| H A D | AccessTable.php | 6 use dokuwiki\plugin\struct\meta\Schema; alias 13 $schema = new Schema($tablename, $ts); 19 $schema = new Schema($tablename, 0); 24 * @param Schema $schema 31 public static function bySchema(Schema $schema, $pid, $ts = 0, $rid = 0) 49 $schema = new Schema($tablename, $ts);
|
| /plugin/struct/_test/ |
| H A D | SchemaTest.php | 5 use dokuwiki\plugin\struct\meta\Schema; alias 64 $actual_cleaned_name = Schema::cleanTableName($input_name); 71 $schema = new Schema('foo'); 79 $schema = new Schema('schema1'); 84 $schema = new Schema('schema1');
|
| H A D | SchemaImporterTest.php | 31 $schema = new meta\Schema('schema1'); 45 $schema = new meta\Schema('tag'); 60 $schema = new meta\Schema('foobar');
|
| H A D | SchemaBuilderTest.php | 5 use dokuwiki\plugin\struct\meta\Schema; alias 51 $testname = Schema::cleanTableName($testname); 132 $testname = Schema::cleanTableName($testname);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/ |
| D | ValidateSchemaRequest.php | 22 protected $schemaType = Schema::class; 26 * @param Schema 28 public function setSchema(Schema $schema) 33 * @return Schema
|
| D | ValidateMessageRequest.php | 34 protected $schemaType = Schema::class; 80 * @param Schema 82 public function setSchema(Schema $schema) 87 * @return Schema
|
| D | ListSchemasResponse.php | 27 protected $schemasType = Schema::class; 45 * @param Schema[] 52 * @return Schema[]
|
| D | Schema.php | 20 class Schema extends \Google\Model class 116 class_alias(Schema::class, 'Google_Service_Pubsub_Schema');
|
| /plugin/struct/action/ |
| H A D | move.php | 16 use dokuwiki\plugin\struct\meta\Schema; alias 65 $schemas = Schema::getAll(); 67 $schema = new Schema($table); 101 foreach (Schema::getAll() as $tbl) { 143 * @param Schema $schema 149 protected function updateColumnID(Schema $schema, Column $col, $old, $new, $hashes = false) 185 * @param Schema $schema 190 protected function updateColumnLookup(Schema $schema, Column $col, $old, $new) 193 $ref = new Schema($tconf['schema']);
|
| H A D | ajax.php | 13 use dokuwiki\plugin\struct\meta\Schema; alias 72 $schema = new Schema($schema);
|
| /plugin/struct/lang/de/ |
| H A D | editor_intro.txt | 1 ====== Struktur Schema-Editor ====== 3 Schemas sind der Kern des Struct Plugins. Ein Schema definiert eine Vorlage mit strukturierten Date… 5 Wählen Sie ein vorhandenes Schema aus dem Inhaltsverzeichnis oder erstellen Sie ein neues Schema.
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/ |
| D | UpdateSchemaRequest.php | 24 protected $schemaType = Schema::class; 46 * @param Schema 48 public function setSchema(Schema $schema) 53 * @return Schema
|
| D | Schema.php | 20 class Schema extends \Google\Collection class 61 class_alias(Schema::class, 'Google_Service_CloudSearch_Schema');
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/Resource/ |
| D | ProjectsSchemas.php | 23 use Google\Service\Pubsub\Schema; alias 47 * @param Schema $postBody 54 * @return Schema 56 public function create($parent, Schema $postBody, $optParams = []) 60 return $this->call('create', [$params], Schema::class); 86 * @return Schema 92 return $this->call('get', [$params], Schema::class);
|
| /plugin/struct/admin/ |
| H A D | schemas.php | 17 use dokuwiki\plugin\struct\meta\Schema; alias 51 $table = Schema::cleanTableName($INPUT->str('table')); 61 $builder = new Schema($table); 117 $schema = new Schema($table); 134 $schema = new Schema($table); 153 $table = Schema::cleanTableName($INPUT->str('table')); 155 $schema = new Schema($table, 0); 188 * @param Schema $schema 191 protected function htmlJson(Schema $schema) 257 * @param Schema $schema [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
| D | Schemas.php | 31 protected $schemasType = Schema::class; 63 * @param Schema[] 70 * @return Schema[]
|
| D | Schema.php | 20 class Schema extends \Google\Collection class 133 class_alias(Schema::class, 'Google_Service_Directory_Schema');
|
| /plugin/struct/meta/ |
| H A D | AccessTable.php | 17 /** @var Schema */ 59 $schema = new Schema($tablename, $ts); 65 $schema = new Schema($tablename, 0); 71 $schema = new Schema($tablename, 0); 78 * @param Schema $schema schema to load 85 public static function bySchema(Schema $schema, $pid, $ts = 0, $rid = 0) 109 $schema = new Schema($tablename, time()); 111 $schema = new Schema($tablename, $ts); 119 * @param Schema $schema The schema valid at $ts 146 * @return Schema
|
| H A D | SchemaEditor.php | 19 /** @var Schema the schema that is edited */ 27 * @param Schema $schema 29 public function __construct(Schema $schema)
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/Resource/ |
| D | IndexingDatasources.php | 21 use Google\Service\CloudSearch\Schema; alias 62 * @return Schema 68 return $this->call('getSchema', [$params], Schema::class);
|
| /plugin/struct/ |
| H A D | helper.php | 14 use dokuwiki\plugin\struct\meta\Schema; alias 164 * @return Schema[] 170 $schemas = Schema::getAll(); 177 $result[$table] = new Schema($table);
|
| /plugin/struct/helper/ |
| H A D | imexport.php | 15 use dokuwiki\plugin\struct\meta\Schema; alias 26 return Schema::getAll(); 82 $schema = new Schema($schemaName);
|
| /plugin/struct/_test/types/ |
| H A D | TagTest.php | 5 use dokuwiki\plugin\struct\meta\Schema; alias 31 $schema = new Schema('tag');
|
| /plugin/swarmwebhook/webhooks/ |
| D | Zapier.php | 5 use dokuwiki\plugin\struct\meta\Schema; alias 77 $schemas = Schema::getAll('lookup');
|