Lines Matching full:consumer
18 * OpenID consumer object.
20 var $consumer = null; variable in fa_openid_svc
32 * Returns the OpenID consumer.
36 * @return the OpenID consumer object
42 if (isset($this->consumer)) {
43 return $this->consumer;
47 require_once("Auth/OpenID/Consumer.php");
53 // create OpenID consumer
54 $this->consumer = new Auth_OpenID_Consumer($store);
55 return $this->consumer;
78 $consumer =& $this->getConsumer();
79 $auth = $consumer->begin($url);
99 $consumer =& $this->getConsumer();
100 $response = $consumer->complete($ref);