Lines Matching refs:client
5042 $client = $xhr;
5045 $client->setAuth(false);
5046 $client->setHeaders("If-Modified-Since", null);
5047 $client->setHeaders("Referer", null);
5048 $client->resetParameters();
5052 $client = new Zend_Http_Client();
5053 $client->setCookieJar();
5056 $client->setConfig(array(
5111 $client->setUri($options['url']);
5112 $client->setMethod(strtoupper($options['type']));
5114 $client->setHeaders('Referer', $options['referer']);
5115 $client->setHeaders(array(
5126 $client->setAuth($options['username'], $options['password']);
5128 $client->setHeaders("If-Modified-Since",
5133 $client->setHeaders("Accept",
5147 $client->setParameterGet($options['data']);
5149 $client->setEncType($options['contentType']);
5150 $client->setParameterPost($options['data']);
5157 phpQuery::callbackRun($options['beforeSend'], array($client));
5160 phpQueryEvents::trigger($documentID, 'ajaxSend', array($client, $options));
5168 $response = $client->request();
5171 self::debug($client->getLastRequest());
5181 phpQueryEvents::trigger($documentID, 'ajaxSuccess', array($client, $options));
5184 …phpQuery::callbackRun($options['error'], array($client, $response->getStatus(), $response->getMess…
5186 …phpQueryEvents::trigger($documentID, 'ajaxError', array($client, /*$response->getStatus(),*/$respo…
5189 phpQuery::callbackRun($options['complete'], array($client, $response->getStatus()));
5191 phpQueryEvents::trigger($documentID, 'ajaxComplete', array($client, $options));
5194 return $client;