Home
last modified time | relevance | path

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

12345678

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DCookieJar.php31 $cookie = new SetCookie($cookie);
33 $this->setCookie($cookie);
77 SetCookie $cookie, argument
102 if ($cookie->getName() !== null && strcasecmp($cookie->getName(), $name) === 0) {
103 return $cookie;
154 return !$cookie->getDiscard() && $cookie->getExpires();
163 $name = $cookie->getName();
215 $this->cookies[] = $cookie;
303 * @param SetCookie $cookie
311 $cookie->getPath(),
[all …]
H A 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));
H A DFileCookieJar.php52 foreach ($this as $cookie) {
54 if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) {
55 $json[] = $cookie->toArray();
84 foreach (json_decode($json, true) as $cookie) {
85 $this->setCookie(new SetCookie($cookie));
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DCookie.php8 * Set values of an cookie.
17 protected $cookie = []; variable in Facebook\\WebDriver\\Cookie
20 * @param string $name The name of the cookie; may not be null or an empty string.
21 * @param string $value The cookie value; may not be null.
28 $this->cookie['name'] = $name;
29 $this->cookie['value'] = $value;
33 * @param array $cookieArray The cookie fields; must contain name and value.
44 $cookie = new self($cookieArray['name'], $cookieArray['value']);
47 $cookie->setPath($cookieArray['path']);
50 $cookie
[all...]
H A DWebDriverOptions.php31 * Add a specific cookie.
33 * @see Cookie for description of possible cookie properties
34 * @param Cookie|array $cookie Cookie object. May be also created from array for compatibility reasons.
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
[all...]
/plugin/socialshareprivacy2/JC/
H A DREADME.md1 # jquery.cookie [![Build Status](https://travis-ci.org/carhartl/jquery-cookie.png?branch=master)](h…
18 Create session cookie:
20 $.cookie('the_cookie', 'the_value');
22 Create expiring cookie, 7 days from then:
30 Read cookie:
39 Delete cookie:
41 // Returns true when cookie was found, false when no cookie was found...
55 $.cookie.raw = true;
61 $.cookie.json = true;
71cookie. Value can be a `Number` which will be interpreted as days from time of creation or a `Date…
[all …]
H A 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.php30 * cookie OCTET STRING }
39 protected $cookie;
48 * @param string $cookie
50 public function __construct(int $size, string $cookie = '')
53 $this->cookie = $cookie;
62 return $this->cookie;
74 * @param string $cookie argument
77 public function setCookie(string $cookie)
79 $this->cookie
36 protected $cookie; global() variable in FreeDSx\\Ldap\\Control\\PagingControl
47 __construct(int $size, string $cookie = '') global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DDirSyncRequestControl.php76 protected $cookie;
81 * @param string $cookie
83 public function __construct(int $flags = self::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647)
87 $this->cookie = $cookie;
134 return $this->cookie;
138 * @param string $cookie argument
141 public function setCookie(string $cookie)
143 $this->cookie = $cookie;
73 protected $cookie; global() variable in FreeDSx\\Ldap\\Control\\Ad\\DirSyncRequestControl
80 __construct(int $flags = self FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647) global() argument
[all...]
H A DDirSyncResponseControl.php51 protected $cookie;
56 * @param string $cookie
58 public function __construct(int $moreResults, int $unused = 0, string $cookie = '')
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)
48 protected $cookie; global() variable in FreeDSx\\Ldap\\Control\\Ad\\DirSyncResponseControl
55 __construct(int $moreResults, int $unused = 0, string $cookie = '') global() argument
[all...]
/plugin/xfortune/
H A Dhelper.php22 $cookie = self::getCookie($cookieID);
25 return nl2br(hsc($cookie));
44 $cookie = self::getCookie($cookieID);
45 $lines = count(explode("\n", $cookie));
48 return $cookie;
105 $cookie = false;
112 $cookie = true;
124 if($cookie) {
135 if($cookie) {
144 $cookie = true;
[all …]
/plugin/batchedit/
H A Djs.cookie.js3 * https://github.com/js-cookie/js-cookie
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
[all...]
/plugin/jdraw/lib/
H A Dhttpclient-4.0.1.jar ... Cookie) org.apache.http.cookie.Cookie c1 org.apache.http.cookie.Cookie
/plugin/jcapture/lib/
H A Dhttpclient-4.0.1.jar ... Cookie) org.apache.http.cookie.Cookie c1 org.apache.http.cookie.Cookie
/plugin/diagramsnet/lib/js/diagramly/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A 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/
H A 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/
H A 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/freechat/phpfreechat/data/public/js/
H A 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;
H A Dcookie.js10 document.cookie = curCookie;
16 var dc = document.cookie;
28 var end = document.cookie.indexOf(";", begin);
39 …if (value != null) document.cookie = name + '=' + ((path) ? '; path=' + path : '') + ((domain) ? '…
/plugin/youtrack/
H A 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/oauth/
H A DOAuthManager.php81 $session->setCookie($logindata['servicename'], $storageId); // set cookie
114 * Login based on user cookie and a previously saved access token
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) retur
[all...]
/plugin/acmenu/
H A Dscript.js19 * <other-cookie>=["val-1",..,"val-m"]; open_items=["val-1",..,"val-n"]
22 var all_cookies = document.cookie.split(";");
26 var cookie = all_cookies[i].trim();
27 var items = cookie.substring((_COOKIE_NAME + "=").length, cookie.length);
49 document.cookie = _COOKIE_NAME + "=" + cookie_value + _COOKIE_PARAMETERS;
141 document.cookie = _COOKIE_NAME + "=" + cookie_value + _COOKIE_PARAMETERS;
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dhttpclient-4.5.5.jar ... auth/params/ org/apache/http/cookie/ org/apache/http/cookie/params ...

12345678