E
E
Elsevar Rizayev2017-03-25 20:18:26
Yii
Elsevar Rizayev, 2017-03-25 20:18:26

RBAC Yii2 deleting your posts?

Hello! Is there a manual somewhere?
Found how to change only my posts

/**
 * Проверяем authorID на соответствие с пользователем, переданным через параметры
 */
class AuthorRule extends Rule
{
    public $name = 'isAuthor';

    /**
     * @param string|int $user the user ID.
     * @param Item $item the role or permission that this rule is associated width.
     * @param array $params parameters passed to ManagerInterface::checkAccess().
     * @return bool a value indicating whether the rule permits the role or permission it is associated with.
     */
    public function execute($user, $item, $params)
    {
        return isset($params['post']) ? $params['post']->user_id == $user : false;
    }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Maxim Timofeev, 2017-03-25
@webinar

wiki.it-wiki.org.ua/doku.php/yii2:rbac

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question