この記事の例では、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 チュートリアルに興味のある友人の参考になれば幸いです。