在Cakephp 2中的自定义身份验证中使用用户模型

时间:2015-06-24 16:01:34

标签: php cakephp

我在cakephp中使用自定义身份验证对象。

In AppController :
$this->Auth->authenticate = array('Ldap','Database');

我需要自定义身份验证组件才能连接到数据库。 我在Controller / Component / Auth / DatabaseAuthentification.php中创建了DatabaseAuthenticate文件 在我的自定义对象中,我需要在我的数据库中请求一个表。我尝试过一些功能而不是控制器

public $uses =array('Car', 'Bike'); 

但它不起作用,我不知道该怎么做。

1 个答案:

答案 0 :(得分:1)

cakephp2?你可以尝试:

$model = ClassRegistry::init('Yourmodel');

将模型简单查询到组件中

$result= $model->find('all');