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.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							857 B
						
					
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							857 B
						
					
					
				| <?php | |
| /** | |
|  * Created by Error202 | |
|  * Date: 04.09.2018 | |
|  */ | |
|  | |
| namespace console\controllers; | |
|  | |
| use core\services\PermissionManager; | |
| use yii\console\Controller; | |
|  | |
| /** | |
|  * Permissions management from console | |
|  * Class PermissionController | |
|  * @package console\controllers | |
|  */ | |
| class PermissionController extends Controller | |
| { | |
|     /** | |
|      * @var PermissionManager Permissions management service | |
|      */ | |
|     private PermissionManager $service; | |
|  | |
|     public function __construct(string $id, $module, PermissionManager $service, array $config = []) | |
|     { | |
|         parent::__construct($id, $module, $config); | |
|         $this->service = $service; | |
|     } | |
|  | |
|     /** | |
|      * Create permission | |
|      * @param $name | |
|      * @param null $description | |
|      */ | |
|     public function actionAdd($name, $description = null) : void | |
|     { | |
|         $this->service->create($name, $description); | |
|     } | |
| }
 | |
| 
 |