當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Auth_OpenID_getDefaultNegotiator函數代碼示例

本文整理匯總了PHP中Auth_OpenID_getDefaultNegotiator函數的典型用法代碼示例。如果您正苦於以下問題:PHP Auth_OpenID_getDefaultNegotiator函數的具體用法?PHP Auth_OpenID_getDefaultNegotiator怎麽用?PHP Auth_OpenID_getDefaultNegotiator使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Auth_OpenID_getDefaultNegotiator函數的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Auth_OpenID_GenericConsumer

 /**
  * This method initializes a new {@link Auth_OpenID_Consumer}
  * instance to access the library.
  *
  * @param Auth_OpenID_OpenIDStore $store This must be an object
  * that implements the interface in {@link Auth_OpenID_OpenIDStore}.
  * Several concrete implementations are provided, to cover most common use
  * cases.  For stores backed by MySQL, PostgreSQL, or SQLite, see
  * the {@link Auth_OpenID_SQLStore} class and its sublcasses.  For a
  * filesystem-backed store, see the {@link Auth_OpenID_FileStore} module.
  * As a last resort, if it isn't possible for the server to store
  * state at all, an instance of {@link Auth_OpenID_DumbStore} can be used.
  *
  * @param bool $immediate This is an optional boolean value.  It
  * controls whether the library uses immediate mode, as explained
  * in the module description.  The default value is False, which
  * disables immediate mode.
  */
 function Auth_OpenID_GenericConsumer($store)
 {
     $this->store = $store;
     $this->negotiator = Auth_OpenID_getDefaultNegotiator();
     $this->_use_assocs = is_null($this->store) ? false : true;
     $this->fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
     $this->session_types = Auth_OpenID_getAvailableSessionTypes();
 }
開發者ID:raphox,項目名稱:php-openid,代碼行數:26,代碼來源:Consumer.php

示例2: Auth_OpenID_Server

	function Auth_OpenID_Server(&$store, $op_endpoint=null)
	{
		$this->store =& $store;
		$this->signatory =& new Auth_OpenID_Signatory($this->store);
		$this->encoder =& new Auth_OpenID_SigningEncoder($this->signatory);
		$this->decoder =& new Auth_OpenID_Decoder($this);
		$this->op_endpoint = $op_endpoint;
		$this->negotiator =& Auth_OpenID_getDefaultNegotiator();
	}
開發者ID:hoalangoc,項目名稱:ftf,代碼行數:9,代碼來源:Server.php

示例3: Auth_OpenID_Server

 function Auth_OpenID_Server(&$store, $op_endpoint = null)
 {
     /*
      * Keyboard Monkeys modification:
      * Assigning the return value of new by reference is deprecated
      */
     $this->store = $store;
     $this->signatory = new Auth_OpenID_Signatory($this->store);
     $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory);
     $this->decoder = new Auth_OpenID_Decoder($this);
     $this->op_endpoint = $op_endpoint;
     $this->negotiator = Auth_OpenID_getDefaultNegotiator();
 }
開發者ID:sdgdsffdsfff,項目名稱:auth-center,代碼行數:13,代碼來源:Server.php

示例4: __construct

 function __construct($store, $op_endpoint = null)
 {
     $this->store = $store;
     $this->signatory = new Auth_OpenID_Signatory($this->store);
     $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory);
     $this->decoder = new Auth_OpenID_Decoder($this);
     $this->op_endpoint = $op_endpoint;
     $this->negotiator = Auth_OpenID_getDefaultNegotiator();
 }
開發者ID:openid,項目名稱:php-openid,代碼行數:9,代碼來源:Server.php

示例5: Auth_OpenID_GenericConsumer

 /**
  * This method initializes a new {@link Auth_OpenID_Consumer}
  * instance to access the library.
  *
  * @param Auth_OpenID_Store_OpenIDStore $store This must be an object
  * that implements the interface in {@link Auth_OpenID_Store_OpenIDStore}.
  * Several concrete implementations are provided, to cover most common use
  * cases.  For stores backed by MySQL, PostgreSQL, or SQLite, see
  * the {@link Auth_OpenID_Store_SQLStore} class and its sublcasses.  For a
  * filesystem-backed store, see the {@link Auth_OpenID_Store_FileStore} module.
  * As a last resort, if it isn't possible for the server to store
  * state at all, an instance of {@link Auth_OpenID_Store_DumbStore} can be used.
  *
  * @param bool $immediate This is an optional boolean value.  It
  * controls whether the library uses immediate mode, as explained
  * in the module description.  The default value is False, which
  * disables immediate mode.
  */
 function Auth_OpenID_GenericConsumer($store)
 {
     $this->store = $store;
     $this->negotiator = Auth_OpenID_getDefaultNegotiator();
     $this->_use_assocs = true;
     if (is_null($this->store) || is_a($this->store, 'Auth_OpenID_Store_DumbStore')) {
         $this->_use_assocs = false;
     }
     $this->fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
     $this->session_types = Auth_OpenID_getAvailableSessionTypes();
 }
開發者ID:hudx,項目名稱:paypal-identity-demo,代碼行數:29,代碼來源:Consumer.php

示例6: __construct

 /**
  * This method initializes a new {@link Auth_OpenID_Consumer}
  * instance to access the library.
  *
  * @param Auth_OpenID_OpenIDStore $store This must be an object
  * that implements the interface in {@link Auth_OpenID_OpenIDStore}.
  * Several concrete implementations are provided, to cover most common use
  * cases.  For stores backed by MySQL, PostgreSQL, or SQLite, see
  * the {@link Auth_OpenID_SQLStore} class and its sublcasses.  For a
  * filesystem-backed store, see the {@link Auth_OpenID_FileStore} module.
  * As a last resort, if it isn't possible for the server to store
  * state at all, an instance of {@link Auth_OpenID_DumbStore} can be used.
  *
  * @param bool $immediate This is an optional boolean value.  It
  * controls whether the library uses immediate mode, as explained
  * in the module description.  The default value is False, which
  * disables immediate mode.
  */
 function __construct(&$store)
 {
     $this->store =& $store;
     $this->negotiator =& Auth_OpenID_getDefaultNegotiator();
     $this->_use_assocs = $this->store ? true : false;
     $this->fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
     $this->session_types = Auth_OpenID_getAvailableSessionTypes();
 }
開發者ID:korelstar,項目名稱:vanilla,代碼行數:26,代碼來源:Consumer.php

示例7: __construct

 /**
  * This method initializes a new {@link Auth_OpenID_Consumer}
  * instance to access the library.
  *
  * @param Auth_OpenID_OpenIDStore $store This must be an object
  * that implements the interface in {@link Auth_OpenID_OpenIDStore}.
  * Several concrete implementations are provided, to cover most common use
  * cases.  For stores backed by MySQL, PostgreSQL, or SQLite, see
  * the {@link Auth_OpenID_SQLStore} class and its sublcasses.  For a
  * filesystem-backed store, see the {@link Auth_OpenID_FileStore} module.
  * As a last resort, if it isn't possible for the server to store
  * state at all, an instance of {@link Auth_OpenID_DumbStore} can be used.
  *
  * @param bool $immediate This is an optional boolean value.  It
  * controls whether the library uses immediate mode, as explained
  * in the module description.  The default value is False, which
  * disables immediate mode.
  */
 public function __construct($store)
 {
     $this->store = $store;
     $this->negotiator = Auth_OpenID_getDefaultNegotiator();
     $this->_use_assocs = is_null($this->store) ? false : true;
     if (get_class($this->store) == "Auth_OpenID_DumbStore") {
         $this->_use_assocs = false;
     }
     $this->fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
     $this->session_types = Auth_OpenID_getAvailableSessionTypes();
 }
開發者ID:FreezyBee,項目名稱:php-openid,代碼行數:29,代碼來源:Consumer.php


注:本文中的Auth_OpenID_getDefaultNegotiator函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。