當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。