/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | PrepareBodyMiddleware.php | 40 $modify = []; 46 $modify['set_headers']['Content-Type'] = $type; 57 $modify['set_headers']['Content-Length'] = $size; 59 $modify['set_headers']['Transfer-Encoding'] = 'chunked'; 64 $this->addExpectHeader($request, $options, $modify); 66 return $fn(Psr7\modify_request($request, $modify), $options); 77 array &$modify 93 $modify['set_headers']['Expect'] = '100-Continue'; 108 $modify['set_headers']['Expect'] = '100-Continue';
|
H A D | RedirectMiddleware.php | 179 $modify = []; 189 $modify['method'] = 'GET'; 190 $modify['body'] = ''; 199 $modify['uri'] = $uri; 205 && $modify['uri']->getScheme() === $request->getUri()->getScheme() 208 $modify['set_headers']['Referer'] = (string) $uri; 210 $modify['remove_headers'][] = 'Referer'; 214 if ($request->getUri()->getHost() !== $modify['uri']->getHost()) { 215 $modify['remove_headers'][] = 'Authorization'; 218 return Psr7\modify_request($request, $modify);
|
H A D | Client.php | 367 $modify = [ 372 $modify['set_headers'] = $options['headers']; 409 $modify['set_headers']['Accept-Encoding'] = $options['decode_content']; 416 $modify['body'] = Psr7\stream_for($options['body']); 426 … $modify['set_headers'] = Psr7\_caseless_remove(['Authorization'], $modify['set_headers']); 427 $modify['set_headers']['Authorization'] = 'Basic ' 450 $modify['query'] = $value; 462 $request = Psr7\modify_request($request, $modify); 474 $modify = []; 477 $modify['set_headers'][$k] = $v; [all …]
|
/plugin/davcard/vendor/sabre/vobject/lib/Recur/ |
H A D | RRuleIterator.php | 326 $this->currentDate->modify('+' . $this->interval . ' hours'); 338 $this->currentDate->modify('+' . $this->interval . ' days'); 361 $this->currentDate->modify('+1 hours'); 364 $this->currentDate->modify('+' . $this->interval . ' days'); 393 $this->currentDate->modify('+' . $this->interval . ' weeks'); 411 $this->currentDate->modify('+1 hours'); 413 $this->currentDate->modify('+1 days'); 487 $this->currentDate->modify('+ ' . $this->interval . ' months'); 537 $this->currentDate->modify('+' . $this->interval . ' years'); 767 $checkDate->modify($dayName); [all …]
|
/plugin/webdavclient/vendor/sabre/vobject/lib/Recur/ |
H A D | RRuleIterator.php | 326 $this->currentDate->modify('+' . $this->interval . ' hours'); 338 $this->currentDate->modify('+' . $this->interval . ' days'); 361 $this->currentDate->modify('+1 hours'); 364 $this->currentDate->modify('+' . $this->interval . ' days'); 393 $this->currentDate->modify('+' . $this->interval . ' weeks'); 411 $this->currentDate->modify('+1 hours'); 413 $this->currentDate->modify('+1 days'); 487 $this->currentDate->modify('+ ' . $this->interval . ' months'); 537 $this->currentDate->modify('+' . $this->interval . ' years'); 767 $checkDate->modify($dayName); [all …]
|
/plugin/davcal/vendor/sabre/vobject/lib/Recur/ |
H A D | RRuleIterator.php | 326 $this->currentDate->modify('+' . $this->interval . ' hours'); 338 $this->currentDate->modify('+' . $this->interval . ' days'); 361 $this->currentDate->modify('+1 hours'); 364 $this->currentDate->modify('+' . $this->interval . ' days'); 393 $this->currentDate->modify('+' . $this->interval . ' weeks'); 411 $this->currentDate->modify('+1 hours'); 413 $this->currentDate->modify('+1 days'); 487 $this->currentDate->modify('+ ' . $this->interval . ' months'); 537 $this->currentDate->modify('+' . $this->interval . ' years'); 767 $checkDate->modify($dayName); [all …]
|
/plugin/icalevents/vendor/sabre/vobject/lib/Recur/ |
H A D | RRuleIterator.php | 325 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' hours'); 337 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' days'); 360 $this->currentDate = $this->currentDate->modify('+1 hours'); 363 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' days'); 392 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' weeks'); 410 $this->currentDate = $this->currentDate->modify('+1 hours'); 412 $this->currentDate = $this->currentDate->modify('+1 days'); 486 $this->currentDate = $this->currentDate->modify('+ ' . $this->interval . ' months'); 618 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' years'); 876 $checkDate = $checkDate->modify($dayName); [all …]
|
/plugin/webdav/vendor/sabre/vobject/lib/Recur/ |
H A D | RRuleIterator.php | 314 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' hours'); 323 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' days'); 347 $this->currentDate = $this->currentDate->modify('+1 hours'); 349 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' days'); 373 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' weeks'); 391 $this->currentDate = $this->currentDate->modify('+1 hours'); 393 $this->currentDate = $this->currentDate->modify('+1 days'); 462 $this->currentDate = $this->currentDate->modify('+ '.$this->interval.' months'); 597 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' years'); 836 $checkDate = $checkDate->modify($dayName); [all …]
|
/plugin/schedule/ |
H A D | poiDB.class.php | 12 var $modify = false; variable in poiDB 40 $this->modify = true; 53 $this->modify = true; 75 $this->modify = true; 99 if (!$this->modify) {
|
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/ |
H A D | MinutesField.php | 22 $date->modify('-1 minute'); 24 $date->modify('+1 minute'); 48 $date->modify(($invert ? '-' : '+') . '1 hour');
|
H A D | HoursField.php | 27 $date->modify('-1 hour'); 29 $date->modify('+1 hour'); 57 $date->modify(($invert ? '-' : '+') . '1 day');
|
H A D | MonthField.php | 30 $date->modify('last day of previous month'); 33 $date->modify('first day of next month');
|
H A D | YearField.php | 21 $date->modify('-1 year'); 25 $date->modify('+1 year');
|
H A D | DayOfMonthField.php | 91 $date->modify('previous day'); 94 $date->modify('next day');
|
H A D | DayOfWeekField.php | 110 $date->modify('-1 day'); 113 $date->modify('+1 day');
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/ |
H A D | ProxyRequestHandler.php | 62 public function modify(RequestContext $context, ModifyRequest $modify): void 64 $this->ldap()->sendAndReceive($modify, ...$context->controls()->toArray()); 61 modify(RequestContext $context, ModifyRequest $modify) global() argument
|
H A D | RequestHandlerInterface.php | 61 * A request to modify an entry. 65 public function modify(RequestContext $context, ModifyRequest $modify): void; 68 * A request to modify the DN of an entry. 64 modify(RequestContext $context, ModifyRequest $modify) global() argument
|
H A D | GenericRequestHandler.php | 76 public function modify(RequestContext $context, ModifyRequest $modify): void 78 throw new OperationException('The modify operation is not supported.'); 86 throw new OperationException('The modify dn operation is not supported.'); 75 modify(RequestContext $context, ModifyRequest $modify) global() argument
|
/plugin/icalevents/vendor/sabre/vobject/bin/ |
H A D | generateicalendardata.php | 55 $dtEnd->modify('+' . mt_rand(1, 3) . ' days'); 72 $currentDate->modify('+ ' . mt_rand(0, 3) . ' days');
|
/plugin/davcard/vendor/sabre/vobject/bin/ |
H A D | generateicalendardata.php | 57 $dtEnd->modify('+' . mt_rand(1,3) . ' days'); 74 $currentDate->modify('+ ' . mt_rand(0,3) . ' days');
|
/plugin/webdavclient/vendor/sabre/vobject/bin/ |
H A D | generateicalendardata.php | 57 $dtEnd->modify('+' . mt_rand(1,3) . ' days'); 74 $currentDate->modify('+ ' . mt_rand(0,3) . ' days');
|
/plugin/davcal/vendor/sabre/vobject/bin/ |
H A D | generateicalendardata.php | 57 $dtEnd->modify('+' . mt_rand(1,3) . ' days'); 74 $currentDate->modify('+ ' . mt_rand(0,3) . ' days');
|
/plugin/findologicxmlexport/vendor/jms/serializer/doc/ |
H A D | event_system.rst | 55 data, and type. Listeners may modify the type that is being used for 75 modify submitted data, or modify the type that is being used for deserialization.
|
/plugin/monthcal/ |
H A D | syntax.php | 203 $date_yesterday = (new DateTime($date_today->format('Y-m-d')))->modify('-1 day'); 208 $date_to = (new DateTime($date_from->format('Y-m-d')))->modify('+1 month'); 211 $date_prev_month = (new DateTime($date_from->format('Y-m-d')))->modify('-1 month');
|
/plugin/farm/install/animaltemplate/conf/ |
H A D | users.auth.php.dist | 3 # Don't modify the lines above
|