Lines Matching +full:- +full:m

53         if ($this->hasAccess !== null) {
54 return $this->hasAccess; // we already checked
64 $httpclient->timeout = 5;
65 $data = $httpclient->get(self::EXTENSION_REPOSITORY_API . '?cmd=ping');
67 $this->hasAccess = false;
70 $this->hasAccess = false;
73 $this->hasAccess = true;
75 return $this->hasAccess;
86 if (!$this->checkAccess()) return;
94 $response = $httpclient->post(self::EXTENSION_REPOSITORY_API, $data);
96 $this->hasAccess = false;
104 $this->storeCache($extension['plugin'], $extension);
109 $this->storeCache($id, []);
112 $this->hasAccess = false;
137 $data = $this->retrieveCache($id);
147 $this->fetchExtensions($toload);
149 $data = $this->retrieveCache($id);
170 $result = $this->initExtensions([$id]);
185 $data = $this->retrieveCache($id);
187 $this->fetchExtensions([$id]);
188 $data = $this->retrieveCache($id);
202 if (!$this->checkAccess()) return [];
204 $query = $this->parseQuery($q);
208 $response = $httpclient->post(self::EXTENSION_REPOSITORY_API, $query);
210 $this->hasAccess = false;
217 $this->hasAccess = false;
223 $this->storeCache($item['plugin'], $item);
246 foreach ($matches as $m) {
247 $q = str_replace($m[2], '', $q);
248 $parameters['tag'][] = $m[3];
253 foreach ($matches as $m) {
254 $q = str_replace($m[2], '', $q);
255 $parameters['mail'][] = $m[3];
260 foreach ($matches as $m) {
261 $q = str_replace($m[2], '', $q);
262 $parameters['ext'][] = $m[3];
270 foreach ($matches as $m) {
271 $q = str_replace($m[2], '', $q);
272 $t = strtolower($m[3]);
293 $cache->storeCache(serialize($data));
305 if ($cache->useCache(['age' => self::CACHE_TIME])) {
306 return unserialize($cache->retrieveCache(false));