1234567891011121314151617181920 |
- <?php
- namespace yiiunit\extensions\mongodb\data\rbac;
- use yii\rbac\Rule;
- class ActionRule extends Rule
- {
- public $name = 'action_rule';
- public $action = 'read';
- /**
- * {@inheritdoc}
- */
- public function execute($user, $item, $params)
- {
- return $this->action === 'all' || $this->action === $params['action'];
- }
- }
|