| /plugin/authssocas/vendor/apereo/phpcas/source/CAS/ |
| H A D | CookieJar.php | 77 foreach ($cookies as $cookie) { 80 if (!$this->cookieMatchesTarget($cookie, $urlParts)) { 85 $this->storeCookie($cookie); 87 phpCAS::trace($cookie['name'].' -> '.$cookie['value']); 116 foreach ($this->_cookies as $key => $cookie) { 117 if ($this->cookieMatchesTarget($cookie, $target)) { 118 $matching_cookies[$cookie['name']] = $cookie['value']; 169 $cookie = array( 210 $cookie['expires'] = strtotime($attributeValue); 213 $cookie['max-age'] = (int)$attributeValue; [all …]
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/ |
| D | CookieJar.php | 29 foreach ($cookieArray as $cookie) { 30 if (!($cookie instanceof SetCookie)) { 31 $cookie = new SetCookie($cookie); 33 $this->setCookie($cookie); 72 * @param SetCookie $cookie Being evaluated. 77 SetCookie $cookie, argument 80 if ($cookie->getExpires() || $allowSessionCookies) { 81 if (!$cookie->getDiscard()) { 101 foreach ($this->cookies as $cookie) { 102 if ($cookie->getName() !== null && strcasecmp($cookie->getName(), $name) === 0) { [all …]
|
| D | SessionCookieJar.php | 45 foreach ($this as $cookie) { 47 if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) { 48 $json[] = $cookie->toArray(); 65 foreach ($data as $cookie) { 66 $this->setCookie(new SetCookie($cookie));
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Cookie/ |
| D | CookieJar.php | 34 foreach ($cookieArray as $cookie) { 35 if (!($cookie instanceof SetCookie)) { 36 $cookie = new SetCookie($cookie); 38 $this->setCookie($cookie); 67 * @param SetCookie $cookie Being evaluated. 70 public static function shouldPersist(SetCookie $cookie, bool $allowSessionCookies = false): bool argument 72 if ($cookie->getExpires() || $allowSessionCookies) { 73 if (!$cookie->getDiscard()) { 90 foreach ($this->cookies as $cookie) { 91 if ($cookie->getName() !== null && \strcasecmp($cookie->getName(), $name) === 0) { [all …]
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/ |
| H A D | Cookie.php | 17 protected $cookie = []; variable in Facebook\\WebDriver\\Cookie 28 $this->cookie['name'] = $name; 29 $this->cookie['value'] = $value; 44 $cookie = new self($cookieArray['name'], $cookieArray['value']); 47 $cookie->setPath($cookieArray['path']); 50 $cookie->setDomain($cookieArray['domain']); 53 $cookie->setExpiry($cookieArray['expiry']); 56 $cookie->setSecure($cookieArray['secure']); 59 $cookie->setHttpOnly($cookieArray['httpOnly']); 62 $cookie->setSameSite($cookieArray['sameSite']); [all …]
|
| H A D | WebDriverOptions.php | 34 …* @param Cookie|array $cookie Cookie object. May be also created from array for compatibility reas… 37 public function addCookie($cookie) argument 39 if (is_array($cookie)) { // @todo @deprecated remove in 2.0 40 $cookie = Cookie::createFromArray($cookie); 42 if (!$cookie instanceof Cookie) { 48 ['cookie' => $cookie->toArray()] 105 foreach ($cookies as $cookie) { 106 if ($cookie['name'] === $name) { 107 return $cookie;
|
| /plugin/socialshareprivacy2/JC/ |
| D | README.md | 1 # jquery.cookie [](h… 9 <script src="/path/to/jquery.cookie.js"></script> 18 Create session cookie: 20 $.cookie('the_cookie', 'the_value'); 22 Create expiring cookie, 7 days from then: 24 $.cookie('the_cookie', 'the_value', { expires: 7 }); 26 Create expiring cookie, valid across entire site: 28 $.cookie('the_cookie', 'the_value', { expires: 7, path: '/' }); 30 Read cookie: 32 $.cookie('the_cookie'); // => "the_value" [all …]
|
| D | jquery.cookie.js | 51 return (document.cookie = [ 64 var cookies = document.cookie.split('; '); 69 var cookie = decode(parts.join('=')); 72 result = converted(cookie); 77 result[name] = converted(cookie); 87 if ($.cookie(key) !== undefined) { 89 $.cookie(key, '', $.extend({}, options, { expires: -1 }));
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/ |
| H A D | PagingControl.php | 39 protected $cookie; variable in FreeDSx\\Ldap\\Control\\PagingControl 48 * @param string $cookie 50 public function __construct(int $size, string $cookie = '') argument 53 $this->cookie = $cookie; 62 return $this->cookie; 74 * @param string $cookie 77 public function setCookie(string $cookie) argument 79 $this->cookie = $cookie; 109 $cookie = $paging->getChild(1); 113 if (!$cookie instanceof OctetStringType) { [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/ |
| H A D | DirSyncRequestControl.php | 76 protected $cookie; variable in FreeDSx\\Ldap\\Control\\Ad\\DirSyncRequestControl 81 * @param string $cookie 83 …public function __construct(int $flags = self::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $… argument 87 $this->cookie = $cookie; 134 return $this->cookie; 138 * @param string $cookie 141 public function setCookie(string $cookie) argument 143 $this->cookie = $cookie; 161 $cookie = $request->getChild(2); 169 if (!$cookie instanceof OctetStringType) { [all …]
|
| H A D | DirSyncResponseControl.php | 51 protected $cookie; variable in FreeDSx\\Ldap\\Control\\Ad\\DirSyncResponseControl 56 * @param string $cookie 58 public function __construct(int $moreResults, int $unused = 0, string $cookie = '') argument 62 $this->cookie = $cookie; 95 return $this->cookie; 112 $cookie = $response->getChild(2); 119 if (!$cookie instanceof OctetStringType) { 126 $cookie->getValue() 140 Asn1::octetString($this->cookie)
|
| /plugin/xfortune/ |
| D | helper.php | 24 $cookie = self::getSmallCookie($cookieID, $maxlines, $maxchars); 26 $cookie = self::getCookie($cookieID); 29 return nl2br(hsc($cookie)); 49 $cookie = self::getCookie($cookieID); 50 $lines = count(explode("\n", $cookie)); 51 } while (($lines > $maxlines || strlen($cookie) > $maxchars) && $tries++ < $runaway); 53 return $cookie; 112 $cookie = false; 119 $cookie = true; 131 if ($cookie) { [all …]
|
| /plugin/batchedit/ |
| D | js.cookie.js | 92 return (document.cookie = key + '=' + value + stringifiedAttributes); 104 var cookies = document.cookie ? document.cookie.split('; ') : []; 110 var cookie = parts.slice(1).join('='); 112 if (!this.json && cookie.charAt(0) === '"') { 113 cookie = cookie.slice(1, -1); 118 cookie = converter.read ? 119 converter.read(cookie, name) : converter(cookie, name) || 120 cookie.replace(rdecode, decodeURIComponent); 124 cookie = JSON.parse(cookie); 129 result = cookie; [all …]
|
| /plugin/googleconsentmananger/ |
| D | style.less | 1 #cookie-bar { 17 #cookie-bar.fixed { 24 #cookie-bar.fixed.bottom { 29 #cookie-bar p { 43 #cookie-bar a { 51 #cookie-bar .cb-enable { 54 #cookie-bar .cb-enable:hover { 57 #cookie-bar .cb-disable { 60 #cookie-bar .cb-disable:hover { 63 #cookie-bar .cb-policy { [all …]
|
| /plugin/jcapture/lib/ |
| D | httpclient-4.0.1.jar | ... Cookie)
org.apache.http.cookie.Cookie c1
org.apache.http.cookie.Cookie |
| /plugin/jdraw/lib/ |
| D | httpclient-4.0.1.jar | ... Cookie)
org.apache.http.cookie.Cookie c1
org.apache.http.cookie.Cookie |
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | DrawioClient.js | 58 document.cookie = this.cookieName + '=; expires=' + expiration.toUTCString(); 81 var cookies = document.cookie; 107 document.cookie = name + '; expires=' + expiry.toUTCString(); 140 …var cookie = this.cookieName + '=' + token + '; path=/' + (sessionOnly? '' : '; expires=' + expira… 144 cookie = cookie + ';secure'; 147 document.cookie = cookie;
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Paging/ |
| H A D | PagingRequests.php | 54 public function findByNextCookie(string $cookie): PagingRequest argument 56 $request = $this->getByNextCookie($cookie); 64 public function has(string $cookie): bool argument 66 return (bool)$this->getByNextCookie($cookie); 69 private function getByNextCookie(string $cookie): ?PagingRequest argument 72 if ($pagingRequest->getNextCookie() === $cookie) {
|
| /plugin/youtrack/ |
| D | helper.php | 15 protected $cookie = false; variable in helper_plugin_youtrack 127 if ($this->cookie) { 128 curl_setopt($curl, CURLOPT_COOKIEFILE, $this->cookie); 129 curl_setopt($curl, CURLOPT_COOKIEJAR, $this->cookie); 163 $this->cookie = false; 167 $this->cookie = tempnam(sys_get_temp_dir(), "CURLCOOKIE"); 189 if ($this->cookie) { 190 unlink($this->cookie) or die("Can't unlink $this->cookie");
|
| /plugin/freechat/phpfreechat/data/public/js/ |
| D | compat.js | 7 …if (typeof(document.cookie) != "string" && navigator.product == "Gecko") delete HTMLDocument.proto… 9 var arrCookies = document.cookie.split ('; '); 25 …if (typeof(document.cookie) != "string" && navigator.product == "Gecko") delete HTMLDocument.proto… 37 document.cookie = name+'='+encodeURIComponent (value)+expires+'; path='+path;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/ |
| D | JwtLocation.php | 25 public $cookie; variable in Google\\Service\\ServiceNetworking\\JwtLocation 42 public function setCookie($cookie) argument 44 $this->cookie = $cookie; 51 return $this->cookie;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/ |
| D | JwtLocation.php | 25 public $cookie; variable in Google\\Service\\ServiceUsage\\JwtLocation 42 public function setCookie($cookie) argument 44 $this->cookie = $cookie; 51 return $this->cookie;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/ |
| D | JwtLocation.php | 25 public $cookie; variable in Google\\Service\\ServiceConsumerManagement\\JwtLocation 42 public function setCookie($cookie) argument 44 $this->cookie = $cookie; 51 return $this->cookie;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/ |
| D | JwtLocation.php | 25 public $cookie; variable in Google\\Service\\ServiceManagement\\JwtLocation 42 public function setCookie($cookie) argument 44 $this->cookie = $cookie; 51 return $this->cookie;
|
| /plugin/oauth/ |
| H A D | OAuthManager.php | 122 $cookie = $session->getCookie(); 123 if (!$cookie) return false; 125 $service = $this->loadService($cookie['servicename']); 126 $service->initOAuthService($cookie['storageId']); 135 $userdata = $this->validateUserData($userdata, $cookie['servicename']); 136 $userdata = $this->processUserData($userdata, $cookie['servicename']); 150 $cookie = $session->getCookie(); 151 if (!$cookie) return; 153 $service = $this->loadService($cookie['servicename']); 154 $service->initOAuthService($cookie['storageId']);
|