當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AuthComponent::allow方法代碼示例

本文整理匯總了PHP中AuthComponent::allow方法的典型用法代碼示例。如果您正苦於以下問題:PHP AuthComponent::allow方法的具體用法?PHP AuthComponent::allow怎麽用?PHP AuthComponent::allow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在AuthComponent的用法示例。


在下文中一共展示了AuthComponent::allow方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: beforeFilter

 /**
  * (non-PHPdoc)
  * @see cake/libs/controller/Controller#beforeFilter()
  */
 public function beforeFilter()
 {
     parent::beforeFilter();
     if ($this->Components->attached('Auth')) {
         $this->Auth->allow('authorize_url', 'authenticate_url', 'callback');
     }
 }
開發者ID:sanrentan,項目名稱:sanrentan,代碼行數:11,代碼來源:OauthController.php

示例2: beforeFilter

 /**
  * (non-PHPdoc)
  * @see cake/libs/controller/Controller#beforeFilter()
  */
 public function beforeFilter()
 {
     parent::beforeFilter();
     if (!empty($this->Auth) && is_object($this->Auth)) {
         $this->Auth->allow('authorize_url', 'authenticate_url', 'callback');
     }
 }
開發者ID:hiromi2424,項目名稱:twitter_kit,代碼行數:11,代碼來源:oauth_controller.php

示例3: beforeFilter

 function beforeFilter()
 {
     $hasAdmin = $this->User->hasAdminUser();
     $this->set('has_admin', $hasAdmin);
     // RSS Authentication by user model
     if ($this->RequestHandler->isRss()) {
         $this->Auth->allow('index');
         $this->Security->loginOptions = array('type' => 'basic', 'login' => 'authenticate', 'realm' => 'My_RSS_Feeds');
         $this->Security->loginUsers = array();
         $this->Security->requireLogin('*');
     }
     // UsersControllerの認証除外設定
     if (get_class($this) == "UsersController") {
         if (!$hasAdmin) {
             $this->Auth->allow(array('add'));
         }
         $this->Auth->allow(array('reset_password', 'reset_password_mail'));
     }
     if (isset($this->Auth)) {
         //コントローラー側でさらに詳細を判別
         $this->Auth->authorize = 'controller';
         //ログインできるユーザの條件をデータベースのフィールドの値で指定
         $this->Auth->userScope = array("User.disabled" => 0);
         //ログイン処理を行うactionを指定(/users/loginがデフォルト)。
         $this->Auth->loginAction = "/users/login";
         //ログインが失敗した際のエラーメッセージ
         $this->Auth->loginError = __("Invalid username or password", true);
         //権限が無いactionを実行した際のエラーメッセージ
         $this->Auth->authError = __('You have no privileges', true);
         //ログイン後にリダイレクトするURL
         $this->Auth->loginRedirect = "/users/index";
         //ユーザIDとパスワードがあるmodelを指定(’User’がデフォルト)
         $this->Auth->userModel = "User";
         //ユーザIDとパスワードのフィールドを指定(username、password がデフォルト)
         $this->Auth->fields = array("username" => "loginname", "password" => "password");
         //自動リダイレクトしない
         $this->Auth->autoRedirect = false;
         // ログインユーザ情報をviewに受け渡し
         $login_user = $this->Auth->User();
         $this->set('login_user', $login_user['User']);
     }
     $project = $this->Project->getProjectInfo();
     $this->set('project_info', $project["Project"]);
     $sprint = $this->Sprint->getActiveSprintList();
     $this->set('sprint_info', $sprint);
 }
開發者ID:vinicius-ianni,項目名稱:PHPMyScrum,代碼行數:46,代碼來源:app_controller.php

示例4: _authSetting

 private static function _authSetting(AuthComponent $auth)
 {
     $auth->allow('login', 'logout');
 }
開發者ID:Shiro-Nwal,項目名稱:sin-kaisha-khine,代碼行數:4,代碼來源:MainsController.php

示例5: allow

 /**
  * 2.1 fix for allowing * as wildcard
  * 2012-01-10 ms
  */
 public function allow($action = null)
 {
     if ((array) $action === array('*')) {
         parent::allow();
         return;
     }
     $args = func_get_args();
     if (empty($args) || $action === null) {
         parent::allow();
     }
     parent::allow($args);
 }
開發者ID:robksawyer,項目名稱:grabitdown,代碼行數:16,代碼來源:AuthExtComponent.php


注:本文中的AuthComponent::allow方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。