cerebrate/templates/Roles/view.php

39 lines
995 B
PHP
Raw Normal View History

2020-06-19 00:42:10 +02:00
<?php
echo $this->element(
'/genericElements/SingleViews/single_view',
[
'data' => $entity,
'fields' => [
[
'key' => __('ID'),
'path' => 'id'
],
[
'key' => __('Name'),
'path' => 'name'
],
[
'key' => __('Admin permission'),
'path' => 'perm_admin',
'type' => 'boolean'
],
[
'key' => __('Organisation admin permission'),
'path' => 'perm_org_admin',
'type' => 'boolean'
],
[
'key' => __('Sync permission'),
'path' => 'perm_sync',
'type' => 'boolean'
],
2020-06-19 00:42:10 +02:00
[
'key' => __('Default role'),
'path' => 'is_default',
'type' => 'boolean'
]
],
'children' => []
]
);