mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
37 lines
995 B
PHP
37 lines
995 B
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => 'Profile',
|
|
'option' => [
|
|
'read' => 'Can read profile?',
|
|
'write' => 'Can create/edit profile?',
|
|
'delete' => 'Can delete profile?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => 'Adress',
|
|
'option' => [
|
|
'read' => 'Can read adress?',
|
|
'write' => 'Can create/edit adress?',
|
|
'delete' => 'Can delete adress?',
|
|
],
|
|
],
|
|
'education' => [
|
|
'name' => 'Education',
|
|
'option' => [
|
|
'read' => 'Can read education?',
|
|
'write' => 'Can create/edit education?',
|
|
'delete' => 'Can delete education?',
|
|
],
|
|
],
|
|
'education_part' => [
|
|
'name' => 'Education part',
|
|
'option' => [
|
|
'read' => 'Can read education part?',
|
|
'write' => 'Can create/edit education part?',
|
|
'delete' => 'Can delete education part?',
|
|
],
|
|
],
|
|
];
|