Home
last modified time | relevance | path

Searched refs:params (Results 1 – 25 of 2463) sorted by relevance

12345678910>>...99

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DIndicesNamespace.php41 * @param array $params Associative array of parameters
45 public function addBlock(array $params = []) argument
47 $index = $this->extractArgument($params, 'index');
48 $block = $this->extractArgument($params, 'block');
52 $endpoint->setParams($params);
64 * @param array $params Associative array of parameters
68 public function analyze(array $params = []) argument
70 $index = $this->extractArgument($params, 'index');
71 $body = $this->extractArgument($params, 'body');
75 $endpoint->setParams($params);
[all …]
DMlNamespace.php40 * @param array $params Associative array of parameters
44 public function closeJob(array $params = []) argument
46 $job_id = $this->extractArgument($params, 'job_id');
47 $body = $this->extractArgument($params, 'body');
51 $endpoint->setParams($params);
62 * @param array $params Associative array of parameters
66 public function deleteCalendar(array $params = []) argument
68 $calendar_id = $this->extractArgument($params, 'calendar_id');
72 $endpoint->setParams($params);
83 * @param array $params Associative array of parameters
[all …]
DSecurityNamespace.php34 * @param array $params Associative array of parameters
38 public function authenticate(array $params = []) argument
43 $endpoint->setParams($params);
54 * @param array $params Associative array of parameters
58 public function changePassword(array $params = []) argument
60 $username = $this->extractArgument($params, 'username');
61 $body = $this->extractArgument($params, 'body');
65 $endpoint->setParams($params);
76 * @param array $params Associative array of parameters
80 public function clearApiKeyCache(array $params = []) argument
[all …]
DCatNamespace.php42 * @param array $params Associative array of parameters
46 public function aliases(array $params = []) argument
48 $name = $this->extractArgument($params, 'name');
52 $endpoint->setParams($params);
70 * @param array $params Associative array of parameters
74 public function allocation(array $params = []) argument
76 $node_id = $this->extractArgument($params, 'node_id');
80 $endpoint->setParams($params);
95 * @param array $params Associative array of parameters
99 public function count(array $params = []) argument
[all …]
DClusterNamespace.php37 * @param array $params Associative array of parameters
41 public function allocationExplain(array $params = []) argument
43 $body = $this->extractArgument($params, 'body');
47 $endpoint->setParams($params);
59 * @param array $params Associative array of parameters
63 public function deleteComponentTemplate(array $params = []) argument
65 $name = $this->extractArgument($params, 'name');
69 $endpoint->setParams($params);
79 * @param array $params Associative array of parameters
83 public function deleteVotingConfigExclusions(array $params = []) argument
[all …]
/plugin/datepicker/script/jscalendar-1.0/
Dcalendar-setup.js62 Calendar.setup = function (params) { argument
63 …function param_default(pname, def) { if (typeof params[pname] == "undefined") { params[pname] = de…
73 param_default("dateStatusFunc", params["disableFunc"]); // takes precedence if both are defined
97 if (typeof params[tmp[i]] == "string") {
98 params[tmp[i]] = document.getElementById(params[tmp[i]]);
101 …if (!(params.flat || params.multiple || params.inputField || params.displayArea || params.button))…
107 var p = cal.params;
126 if (params.flat != null) {
127 if (typeof params.flat == "string")
128 params.flat = document.getElementById(params.flat);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/
DFirewallPolicies.php67 $params = ['firewallPolicy' => $firewallPolicy, 'postBody' => $postBody];
68 $params = array_merge($params, $optParams);
69 return $this->call('addAssociation', [$params], Operation::class);
92 $params = ['firewallPolicy' => $firewallPolicy, 'postBody' => $postBody];
93 $params = array_merge($params, $optParams);
94 return $this->call('addRule', [$params], Operation::class);
118 $params = ['firewallPolicy' => $firewallPolicy];
119 $params = array_merge($params, $optParams);
120 return $this->call('cloneRules', [$params], Operation::class);
142 $params = ['firewallPolicy' => $firewallPolicy];
[all …]
DInstances.php89 …$params = ['project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => …
90 $params = array_merge($params, $optParams);
91 return $this->call('addAccessConfig', [$params], Operation::class);
118 …$params = ['project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBod…
119 $params = array_merge($params, $optParams);
120 return $this->call('addResourcePolicies', [$params], Operation::class);
181 $params = ['project' => $project];
182 $params = array_merge($params, $optParams);
183 return $this->call('aggregatedList', [$params], InstanceAggregatedList::class);
214 …$params = ['project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBod…
[all …]
DNetworkFirewallPolicies.php67 $params = ['project' => $project, 'firewallPolicy' => $firewallPolicy, 'postBody' => $postBody];
68 $params = array_merge($params, $optParams);
69 return $this->call('addAssociation', [$params], Operation::class);
99 $params = ['project' => $project, 'firewallPolicy' => $firewallPolicy, 'postBody' => $postBody];
100 $params = array_merge($params, $optParams);
101 return $this->call('addRule', [$params], Operation::class);
127 $params = ['project' => $project, 'firewallPolicy' => $firewallPolicy];
128 $params = array_merge($params, $optParams);
129 return $this->call('cloneRules', [$params], Operation::class);
152 $params = ['project' => $project, 'firewallPolicy' => $firewallPolicy];
[all …]
/plugin/flattr/
Dhelper.php24 function validateParameters(&$params) { argument
25 if (isset($params['align'])) {
26 if (!in_array($params['align'], array('left', 'center', 'right')))
27 $params['align'] = 'left';
30 if (isset($params['button'])) {
31 if (!in_array($params['button'], array('normal', 'compact', 'static')))
32 $params['button'] = 'normal';
35 if (isset($params['category'])) {
36 … if (!in_array($params['category'], array('text', 'images', 'video', 'audio', 'software', 'rest')))
37 $params['category'] = $this->getConf('default_category');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/Resource/
DProjectsLocationsInstances.php69 $params = ['parent' => $parent, 'postBody' => $postBody];
70 $params = array_merge($params, $optParams);
71 return $this->call('create', [$params], Operation::class);
83 $params = ['name' => $name];
84 $params = array_merge($params, $optParams);
85 return $this->call('delete', [$params], Operation::class);
97 $params = ['name' => $name];
98 $params = array_merge($params, $optParams);
99 return $this->call('get', [$params], Instance::class);
126 $params = ['resource' => $resource];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/Resource/
DEnterprises.php53 $params = [];
54 $params = array_merge($params, $optParams);
55 return $this->call('acknowledgeNotificationSet', [$params]);
72 $params = [];
73 $params = array_merge($params, $optParams);
74 return $this->call('completeSignup', [$params], Enterprise::class);
89 $params = ['enterpriseId' => $enterpriseId, 'postBody' => $postBody];
90 $params = array_merge($params, $optParams);
91 return $this->call('createWebToken', [$params], AdministratorWebToken::class);
104 $params = ['token' => $token, 'postBody' => $postBody];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/Resource/
DInstances.php58 $params = ['project' => $project, 'instance' => $instance];
59 $params = array_merge($params, $optParams);
60 return $this->call('addServerCa', [$params], Operation::class);
76 $params = ['project' => $project, 'instance' => $instance, 'postBody' => $postBody];
77 $params = array_merge($params, $optParams);
78 return $this->call('clone', [$params], Operation::class);
92 $params = ['project' => $project, 'instance' => $instance];
93 $params = array_merge($params, $optParams);
94 return $this->call('delete', [$params], Operation::class);
108 $params = ['project' => $project, 'instance' => $instance, 'postBody' => $postBody];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDomains/Resource/
DProjectsLocationsRegistrations.php63 $params = ['registration' => $registration, 'postBody' => $postBody];
64 $params = array_merge($params, $optParams);
65 return $this->call('configureContactSettings', [$params], Operation::class);
79 $params = ['registration' => $registration, 'postBody' => $postBody];
80 $params = array_merge($params, $optParams);
81 return $this->call('configureDnsSettings', [$params], Operation::class);
96 $params = ['registration' => $registration, 'postBody' => $postBody];
97 $params = array_merge($params, $optParams);
98 return $this->call('configureManagementSettings', [$params], Operation::class);
121 $params = ['name' => $name];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/Resource/
DOrganizationsEnvironments.php57 $params = ['parent' => $parent, 'postBody' => $postBody];
58 $params = array_merge($params, $optParams);
59 return $this->call('create', [$params], GoogleLongrunningOperation::class);
71 $params = ['name' => $name];
72 $params = array_merge($params, $optParams);
73 return $this->call('delete', [$params], GoogleLongrunningOperation::class);
85 $params = ['name' => $name];
86 $params = array_merge($params, $optParams);
87 return $this->call('get', [$params], GoogleCloudApigeeV1Environment::class);
101 $params = ['name' => $name];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/Resource/
DProjectsLocationsDatasetsFhirStoresFhir.php87 $params = ['name' => $name];
88 $params = array_merge($params, $optParams);
89 return $this->call('Patient-everything', [$params], HttpBody::class);
106 $params = ['name' => $name];
107 $params = array_merge($params, $optParams);
108 return $this->call('Resource-purge', [$params], HealthcareEmpty::class);
145 $params = ['parent' => $parent, 'type' => $type, 'postBody' => $postBody];
146 $params = array_merge($params, $optParams);
147 return $this->call('Resource-validate', [$params], HttpBody::class);
171 $params = ['name' => $name];
[all …]
DProjectsLocationsDatasetsDicomStores.php56 $params = ['parent' => $parent, 'postBody' => $postBody];
57 $params = array_merge($params, $optParams);
58 return $this->call('create', [$params], DicomStore::class);
80 $params = ['sourceStore' => $sourceStore, 'postBody' => $postBody];
81 $params = array_merge($params, $optParams);
82 return $this->call('deidentify', [$params], Operation::class);
94 $params = ['name' => $name];
95 $params = array_merge($params, $optParams);
96 return $this->call('delete', [$params], HealthcareEmpty::class);
114 $params = ['name' => $name, 'postBody' => $postBody];
[all …]
/plugin/odt/ODT/
DODTTable.php20 …public static function tableOpen(ODTInternalParams $params, $maxcols = NULL, $numrows = NULL, $tab… argument
24 $elementObj = $params->elementObj;
27 $params->document->paragraphClose();
35 $tableStyleName = $params->document->getStyleName('table');
38 $list_item = $params->document->state->getCurrentListItem();
44 $list_style = $params->document->getStyle($list_style_name);
48 $level = $params->document->state->countClass('list');
54 $count = $params->document->state->getElementCount('table')+1;
56 if (!$params->document->styleExists($style_name)) {
57 $style_obj = clone $params->document->getStyle($tableStyleName);
[all …]
DODTFrame.php65 * @param ODTInternalParams $params Commom params.
69 …public static function openTextBoxUseCSS (ODTInternalParams $params, $element=NULL, $attributes=NU… argument
70 $frame = $params->document->state->getCurrentFrame();
77 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
78 $params->elementObj = $params->htmlStack->getCurrentElement();
80 self::openTextBoxUseProperties ($params, $properties);
93 * @param ODTInternalParams $params Commom params.
98 …public static function openTextBoxUseProperties (ODTInternalParams $params, $properties, $element=… argument
100 self::openFrameUseProperties ($params, $properties, $element, $attributes);
109 $params->document->state->enter($box);
[all …]
DODTList.php21 …static public function listOpen(ODTInternalParams $params, $continue=false, $styleName, $element=N… argument
22 $params->document->paragraphClose();
25 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
28 $params->document->state->enter($list);
31 $params->content .= $list->getOpeningTag();
37 static public function listClose(ODTInternalParams $params) { argument
38 $table = $params->document->state->getCurrentTable();
44 if ($params->document->state->getInListItem()) {
47 $params->document->listItemClose();
51 self::replaceLastListParagraph($params);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/Resource/
DRelyingparty.php78 $params = ['postBody' => $postBody];
79 $params = array_merge($params, $optParams);
80 return $this->call('createAuthUri', [$params], CreateAuthUriResponse::class);
91 $params = ['postBody' => $postBody];
92 $params = array_merge($params, $optParams);
93 return $this->call('deleteAccount', [$params], DeleteAccountResponse::class);
104 $params = ['postBody' => $postBody];
105 $params = array_merge($params, $optParams);
106 return $this->call('downloadAccount', [$params], DownloadAccountResponse::class);
117 $params = ['postBody' => $postBody];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/Resource/
DProjectsLocationsClusters.php61 $params = ['name' => $name, 'postBody' => $postBody];
62 $params = array_merge($params, $optParams);
63 return $this->call('completeIpRotation', [$params], Operation::class);
83 $params = ['parent' => $parent, 'postBody' => $postBody];
84 $params = array_merge($params, $optParams);
85 return $this->call('create', [$params], Operation::class);
112 $params = ['name' => $name];
113 $params = array_merge($params, $optParams);
114 return $this->call('delete', [$params], Operation::class);
137 $params = ['name' => $name];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/Resource/
DProjectsLocationsManagedidentitiesGlobalDomains.php58 $params = ['name' => $name, 'postBody' => $postBody];
59 $params = array_merge($params, $optParams);
60 return $this->call('attachTrust', [$params], Operation::class);
81 $params = ['parent' => $parent, 'postBody' => $postBody];
82 $params = array_merge($params, $optParams);
83 return $this->call('create', [$params], Operation::class);
95 $params = ['name' => $name];
96 $params = array_merge($params, $optParams);
97 return $this->call('delete', [$params], Operation::class);
111 $params = ['name' => $name, 'postBody' => $postBody];
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
DClient.php82 protected $params; variable in Elasticsearch\\Client
330 * @param array $params Associative array of parameters
334 public function bulk(array $params = []) argument
336 $index = $this->extractArgument($params, 'index');
337 $type = $this->extractArgument($params, 'type');
338 $body = $this->extractArgument($params, 'body');
342 $endpoint->setParams($params);
355 * @param array $params Associative array of parameters
359 public function clearScroll(array $params = []) argument
361 $scroll_id = $this->extractArgument($params, 'scroll_id');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DatabaseMigrationService/Resource/
DProjectsLocationsMigrationJobs.php65 $params = ['parent' => $parent, 'postBody' => $postBody];
66 $params = array_merge($params, $optParams);
67 return $this->call('create', [$params], Operation::class);
87 $params = ['name' => $name];
88 $params = array_merge($params, $optParams);
89 return $this->call('delete', [$params], Operation::class);
103 $params = ['migrationJob' => $migrationJob, 'postBody' => $postBody];
104 $params = array_merge($params, $optParams);
105 return $this->call('generateSshScript', [$params], SshScript::class);
116 $params = ['name' => $name];
[all …]

12345678910>>...99