本文整理匯總了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);
}