rhosocial/yii2-organization

View on GitHub
rbac/permissions/RevokeOrganization.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 *  _   __ __ _____ _____ ___  ____  _____
 * | | / // // ___//_  _//   ||  __||_   _|
 * | |/ // /(__  )  / / / /| || |     | |
 * |___//_//____/  /_/ /_/ |_||_|     |_|
 * @link https://vistart.me/
 * @copyright Copyright (c) 2016 - 2017 vistart
 * @license https://vistart.me/license/
 */

namespace rhosocial\organization\rbac\permissions;

use rhosocial\user\rbac\Permission;
use rhosocial\organization\rbac\rules\RevokeOrganizationRule;

/**
 * This class described a `RevokeOrganization` permission, which allows user
 * who had it to revoke an organization.
 * This permission will be automatically assigned to creator of organization.
 *
 * @version 1.0
 * @author vistart <i@vistart.me>
 */
class RevokeOrganization extends Permission
{
    /**
     * @inheritdoc
     */
    public $name = 'revokeOrganization';
    
    /**
     * @inheritdoc
     */
    public $description = 'Revoke organization.';

    public function init()
    {
        $this->ruleName = empty($this->ruleName) ? (new RevokeOrganizationRule)->name : $this->ruleName;
    }
}