当前位置: 首页>>代码示例>>PHP>>正文


PHP AuthComponent::__construct方法代码示例

本文整理汇总了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)');
     }
 }
开发者ID:robksawyer,项目名称:grabitdown,代码行数:30,代码来源:AuthExtComponent.php

示例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();
 }
开发者ID:analogrithems,项目名称:idbroker,代码行数:25,代码来源:l_d_a_p_auth.php

示例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);
 }
开发者ID:miznokruge,项目名称:base-cake,代码行数:12,代码来源:AuthExtComponent.php


注:本文中的AuthComponent::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。