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)');
     }
 }
 /**
  * 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();
 }
 /**
  * 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);
 }