role #
Instantiate a new Role object.
role(id, content) #
Arguments | Type | Description |
---|---|---|
id | string | Unique role identifier |
content | JSON Object | Role content |
Return Value #
Returns the new Role object.
Usage #
<?php
use \Kuzzle\Kuzzle;
use \Kuzzle\Security\Role;
$roleId = 'myRole';
$roleDefinition = [
'controllers' => [
'*' => [
'actions' => [
'*' => true
]
]
]
];
$kuzzle = new Kuzzle('localhost');
$security = $kuzzle->security();
$role = $security->role($roleId, $roleDefinition);
// $role instanceof Role
Edit this page on Github(opens new window)