Home
last modified time | relevance | path

Searched refs:cookie (Results 1 – 25 of 208) sorted by relevance

123456789

/plugin/authssocas/vendor/apereo/phpcas/source/CAS/
H A DCookieJar.php77 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/
DCookieJar.php29 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 …]
DSessionCookieJar.php45 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/
DCookieJar.php34 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 DCookie.php17 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 DWebDriverOptions.php34 …* @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/
DREADME.md1 # jquery.cookie [![Build Status](https://travis-ci.org/carhartl/jquery-cookie.png?branch=master)](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 …]
Djquery.cookie.js51 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 DPagingControl.php39 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 DDirSyncRequestControl.php76 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 DDirSyncResponseControl.php51 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/
Dhelper.php24 $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/
Djs.cookie.js92 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/
Dstyle.less1 #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/
Dhttpclient-4.0.1.jar ... Cookie) org.apache.http.cookie.Cookie c1 org.apache.http.cookie.Cookie
/plugin/jdraw/lib/
Dhttpclient-4.0.1.jar ... Cookie) org.apache.http.cookie.Cookie c1 org.apache.http.cookie.Cookie
/plugin/diagramsnet/lib/js/diagramly/
DDrawioClient.js58 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 DPagingRequests.php54 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/
Dhelper.php15 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/
Dcompat.js7 …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/
DJwtLocation.php25 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/
DJwtLocation.php25 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/
DJwtLocation.php25 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/
DJwtLocation.php25 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 DOAuthManager.php122 $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']);

123456789