Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
867 B

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\rbac;
use yii\rbac\Rule;
/**
* Description of ActionRule.
*/
class ActionRule extends Rule
{
public $name = 'action_rule';
public $action = 'read';
/**
* Private and protected properties to ensure that serialized object
* does not get corrupted after saving into the DB because of null-bytes
* in the string.
*
* @see https://github.com/yiisoft/yii2/issues/10176
* @see https://github.com/yiisoft/yii2/issues/12681
*/
private $somePrivateProperty;
protected $someProtectedProperty;
public function execute($user, $item, $params)
{
return $this->action === 'all' || $this->action === $params['action'];
}
}