equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Auth |
16 * @package Zend_Auth |
17 * @subpackage Adapter |
17 * @subpackage Adapter |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: DbTable.php 24593 2012-01-05 20:35:02Z matthew $ |
20 * @version $Id$ |
21 */ |
21 */ |
22 |
22 |
23 |
23 |
24 /** |
24 /** |
25 * @see Zend_Auth_Adapter_Interface |
25 * @see Zend_Auth_Adapter_Interface |
39 |
39 |
40 /** |
40 /** |
41 * @category Zend |
41 * @category Zend |
42 * @package Zend_Auth |
42 * @package Zend_Auth |
43 * @subpackage Adapter |
43 * @subpackage Adapter |
44 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
44 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
45 * @license http://framework.zend.com/license/new-bsd New BSD License |
45 * @license http://framework.zend.com/license/new-bsd New BSD License |
46 */ |
46 */ |
47 class Zend_Auth_Adapter_DbTable implements Zend_Auth_Adapter_Interface |
47 class Zend_Auth_Adapter_DbTable implements Zend_Auth_Adapter_Interface |
48 { |
48 { |
49 |
49 |
130 * @param Zend_Db_Adapter_Abstract $zendDb If null, default database adapter assumed |
130 * @param Zend_Db_Adapter_Abstract $zendDb If null, default database adapter assumed |
131 * @param string $tableName |
131 * @param string $tableName |
132 * @param string $identityColumn |
132 * @param string $identityColumn |
133 * @param string $credentialColumn |
133 * @param string $credentialColumn |
134 * @param string $credentialTreatment |
134 * @param string $credentialTreatment |
135 * @return void |
|
136 */ |
135 */ |
137 public function __construct(Zend_Db_Adapter_Abstract $zendDb = null, $tableName = null, $identityColumn = null, |
136 public function __construct(Zend_Db_Adapter_Abstract $zendDb = null, $tableName = null, $identityColumn = null, |
138 $credentialColumn = null, $credentialTreatment = null) |
137 $credentialColumn = null, $credentialTreatment = null) |
139 { |
138 { |
140 $this->_setDbAdapter($zendDb); |
139 $this->_setDbAdapter($zendDb); |