Lines Matching +full:continue +full:- +full:on +full:- +full:error
24 $this->data = $this->decodeData($_COOKIE[self::COOKIENAME] ?? '');
36 return $this->data[$pref] ?? $default;
51 if (isset($this->data[$pref])) {
52 unset($this->data[$pref]);
55 $this->data[$pref] = $value;
58 $this->sendCookie();
70 ksort($this->data); // sort by key
72 $newdata = self::encodeData($this->data);
80 // no cookies to set when running on CLI
106 Logger::error('Odd entries in user\'s pref cookie', $rawdata);
107 continue;