Home
last modified time | relevance | path

Searched refs:responseString (Results 1 – 3 of 3) sorted by relevance

/plugin/botbouncer/lib/
H A Dmollom.php194 $responseString = self::doCall('checkCaptcha', $parameters);
199 if((string) $responseString->params->param->value->boolean == '1') return true;
257 $responseString = self::doCall('checkContent', $parameters);
263 foreach ($responseString->params->param->value->struct->member as $part)
507 $responseString = self::doCall('getAudioCaptcha', $parameters);
556 $responseString = self::doCall('getImageCaptcha', $parameters);
655 $responseString = self::doCall('getStatistics', array('type' => $type));
661 return (int) $responseString->params->param->value->int;
698 $responseString = self::doCall('sendFeedback', $parameters);
704 if((string) $responseString->params->param->value->boolean == 1) return true;
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResponse.php61 * @param array|string $responseString Response string (json)
64 public function __construct($responseString, $responseStatus = null) argument
66 if (\is_array($responseString)) {
67 $this->_response = $responseString;
69 $this->_responseString = $responseString;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php163 $responseString = \ob_get_clean();
170 $response = new Response($responseString, \curl_getinfo($conn, \CURLINFO_RESPONSE_CODE));