Lines Matching full:status

84       if($this->client->status == 201)
89 $this->lastErr = 'Error adding calendar entry, server reported status '.$this->client->status;
113 if($this->client->status == 204)
118 … $this->lastErr = 'Error editing calendar entry, server reported status '.$this->client->status;
142 if($this->client->status == 204)
147 … $this->lastErr = 'Error deleting calendar entry, server reported status '.$this->client->status;
289 if($this->client->status == 201)
294 … $this->lastErr = 'Error adding addressbook entry, server reported status '.$this->client->status;
319 if($this->client->status == 204)
324 … $this->lastErr = 'Error editing addressbook entry, server reported status '.$this->client->status;
348 if($this->client->status == 204)
353 …$this->lastErr = 'Error deleting addressbook entry, server reported status '.$this->client->status;
575 switch($this->client->status)
623 if($this->client->status == 207)
642 if($this->client->status == 207)
844 if(($this->client->status >= 400) || ($this->client->status < 200))
846 dbglog('Error: Status reported was ' . $this->client->status);
847 $this->lastErr = "Error: Server reported status ".$this->client->status;
1207 * Parse a remote response and check the status of the response objects
1214 if(($this->client->status >= 400) || ($this->client->status < 200))
1216 dbglog('Error: Status reported was ' . $this->client->status);
1217 $this->lastErr = "Error: Server reported status ".$this->client->status;
1221 dbglog($this->client->status);
1243 $status = $this->parseHttpStatus((string)$response->propstat->status);
1244 $data[$href]['status'] = $status;
1246 if($status === '200')
1314 * Retrieve the status of a collection
1317 * @return an Array containing the status
1340 * Update the status of a connection
1440 * Helper function to parse a HTTP status response into a status code only
1442 * @param string $statusString The HTTP status string
1444 * @return The status as a string
1448 $status = explode(' ', $statusString, 3);
1449 $status = $status[1];
1450 return $status;