本文整理汇总了PHP中AuthComponent::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP AuthComponent::__construct方法的具体用法?PHP AuthComponent::__construct怎么用?PHP AuthComponent::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AuthComponent
的用法示例。
在下文中一共展示了AuthComponent::__construct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(ComponentCollection $Collection, $settings = array())
{
$settings = array_merge($this->settings, (array) $settings, (array) Configure::read('Auth'));
$this->Controller = $Collection->getController();
parent::__construct($Collection, $settings);
# auto-select multi if necessary
if ($this->settings['multi'] === null) {
$Model = $this->getModel();
if (!empty($Model->hasMany)) {
foreach ($Model->hasMany as $name => $relation) {
if ($name != $this->roleModel) {
continue;
}
$this->settings['multi'] = false;
return;
}
}
$Model = $this->getModel();
if (!empty($Model->hasAndBelongsToMany)) {
foreach ($Model->hasAndBelongsToMany as $name => $relation) {
if ($name != $this->roleModel) {
continue;
}
$this->settings['multi'] = true;
return;
}
}
//$this->log('AuthExt component not configured properly (auto select multi failed)');
}
}
示例2: empty
/**
* setup the model stuff
*
*
*/
function __construct()
{
$model = Configure::read('LDAP.LdapAuth.Model');
$this->sqlUserModel = Configure::read('LDAP.LdapAuth.MirrorSQL.Users');
$this->sqlGroupModel = Configure::read('LDAP.LdapAuth.MirrorSQL.Groups');
if (isset($this->sqlUserModel) && !empty($this->sqlUserModel)) {
$this->sqlUserModel =& $this->getModel($this->sqlUserModel);
}
if (isset($this->sqlGroupModel) && !empty($this->sqlGroupModel)) {
$this->sqlGroupModel =& $this->getModel($this->sqlGroupModel);
}
$this->groupType = Configure::read('LDAP.groupType');
//lets find all of our users groups
if (!isset($this->groupType) || empty($this->groupType)) {
$this->groupType = 'group';
}
$this->userModel = empty($model) ? 'Idbroker.LdapAuth' : $model;
$this->model =& $this->getModel();
parent::__construct();
}
示例3: __construct
/**
* Merge in Configure::read('Auth') settings
*
* @param ComponentCollection $Collection
* @param array $config
*/
public function __construct(ComponentCollection $Collection, $config = array())
{
$defaults = (array) Configure::read('Auth') + $this->_defaultConfig;
$config += $defaults;
parent::__construct($Collection, $config);
}