File indexing completed on 2024-12-22 05:36:17
0001 <?php 0002 /** 0003 * @see Zend_Auth_Adapter_Interface 0004 */ 0005 require_once 'Zend/Auth/Adapter/Interface.php'; 0006 0007 /** 0008 * @see Zend_Auth_Result 0009 */ 0010 require_once 'Zend/Auth/Result.php'; 0011 0012 0013 /** 0014 * @category Zend 0015 * @package Zend_Auth 0016 * @subpackage Adapter 0017 * @copyright Copyright (c) 2011 Björn Schramke (http://www.schramke-online.de) 0018 * @license http://framework.zend.com/license/new-bsd New BSD License 0019 */ 0020 class CB_Auth_Adapter_Facebook implements Zend_Auth_Adapter_Interface 0021 { 0022 0023 /** 0024 * authenticate() - defined by Zend_Auth_Adapter_Interface. This method is called to 0025 * attempt an authentication. Previous to this call, this adapter would have already 0026 * been configured with all necessary information to successfully connect to a database 0027 * table and attempt to find a record matching the provided identity. 0028 * 0029 * @throws Zend_Auth_Adapter_Exception if answering the authentication query is impossible 0030 * @return Zend_Auth_Result 0031 */ 0032 public function authenticate() 0033 { 0034 } 0035 0036 0037 }