Home > Backend Development > PHP Tutorial > Methods of yii permission control (three methods), yii permission control_PHP tutorial

Methods of yii permission control (three methods), yii permission control_PHP tutorial

WBOY
Release: 2016-07-12 09:02:18
Original
1104 people have browsed it

yii permission control methods (three methods), yii permission control

This article describes the yii permission control method with examples. Share it with everyone for your reference, the details are as follows:

Here are the following 3 excerpts:

1. Through 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('*'),
    ),
  );
}

Copy after login

2. Through plug-ins (eg: right)

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

Copy after login

3. Mixing mode:

/**
 * @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();
}

Copy after login

If you want to open certain actions based on permissions, you can pass allowedActions:

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

Copy after login

I hope this article will be helpful to everyone’s PHP program design based on the Yii framework.

Articles you may be interested in:

  • Yii Getting Started Tutorial: Directory Structure, Entry File and Routing Settings
  • Yii Getting Started Tutorial: Yii Installation and Hello World
  • Yii PHP Framework practical introductory tutorial (detailed introduction)
  • Yii Query Builder (Query Builder) usage example tutorial
  • YII method of using url component to beautify management
  • yii Methods to remove asterisks in required fields
  • Methods to implement batch deletion of CGridView in Yii
  • Query methods of yii database
  • Summary of YiiFramework introductory knowledge points (graphic tutorial)

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1085885.htmlTechArticleYii permission control methods (three methods), yii permission control This article describes the yii permission control method with examples. Share it with everyone for your reference, the details are as follows: Here are the following 3 excerpts:...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template