43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
|
<?php
|
||
|
echo $this->element('genericElements/Form/genericForm', [
|
||
|
'data' => [
|
||
|
'description' => __('Roles define global rules for a set of users, including first and foremost access controls to certain functionalities.'),
|
||
|
'model' => 'Roles',
|
||
|
'fields' => [
|
||
|
[
|
||
|
'field' => 'individual_id',
|
||
|
'type' => 'dropdown',
|
||
|
'label' => __('Associated individual'),
|
||
|
'options' => $dropdownData['individual']
|
||
|
],
|
||
|
[
|
||
|
'field' => 'username'
|
||
|
],
|
||
|
[
|
||
|
'field' => 'password',
|
||
|
'label' => __('Password')
|
||
|
],
|
||
|
[
|
||
|
'field' => 'confirm_password',
|
||
|
'label' => __('Confirm Password')
|
||
|
],
|
||
|
[
|
||
|
'field' => 'role_id',
|
||
|
'type' => 'dropdown',
|
||
|
'label' => __('Role'),
|
||
|
'options' => $dropdownData['role']
|
||
|
],
|
||
|
[
|
||
|
'field' => 'disabled',
|
||
|
'type' => 'checkbox',
|
||
|
'label' => 'Disable'
|
||
|
]
|
||
|
],
|
||
|
'submit' => [
|
||
|
'action' => $this->request->getParam('action')
|
||
|
]
|
||
|
]
|
||
|
]);
|
||
|
?>
|
||
|
</div>
|