yii 権限制御の 3 つの方法

WBOY
リリース: 2016-07-29 09:08:43
オリジナル
861 人が閲覧しました

この記事の例では、Yii の権限制御方法について説明します。参考のために皆さんと共有してください。詳細は次のとおりです:

以下の 3 つの抜粋です:

1. accessControl 経由:

public function filters()
{
  return array(
    'accessControl', // perform access control for CRUD operations
  );
}
/**
 * Specifies the access control rules.
 * This method is used by the 'accessControl' filter.
 * @return array access control rules
 */
public function accessRules()
{
  return array(
    array('allow', // allow authenticated users to access all actions
      'users'=>array('@'),
    ),
    array('deny', // deny all users
      'users'=>array('*'),
    ),
  );
}

ログイン後にコピー

2. プラグイン経由 (右)

public function filters()
{
  return array(
    'rights',
  );
}

ログイン後にコピー

3. ミキシングモード:

/**
 * @return array action filters
 */
public function filters()
{
  return array(
    'updateOwn + update', // Apply this filter only for the update action.
    'rights',
  );
}
/**
 * Filter method for checking whether the currently logged in user
 * is the author of the post being accessed.
 */
public function filterUpdateOwn($filterChain)
{
  $post=$this->loadModel();
  // Remove the 'rights' filter if the user is updating an own post
  // and has the permission to do so.
  if(Yii::app()->user->checkAccess('PostUpdateOwn', array('userid'=>$post->author_id)))
    $filterChain->removeAt(1);
  $filterChain->run();
}

ログイン後にコピー

特定のアクションを開く権限がある場合は、 allowedActions:

public function allowedActions()
{
  return 'autocomplate,autocomplate2';
}

ログイン後にコピー

この記事が、Yii フレームワークに基づいた PHP プログラムの設計に役立つことを願っています。

以上、Yii のパーミッション制御の 3 つの方法を内容も含めて紹介しましたが、PHP チュートリアルに興味のある友人の参考になれば幸いです。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート