1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- //application details
- $apps[$x]['name'] = 'Permissions';
- $apps[$x]['uuid'] = 'ce1498a0-46e2-487d-85de-4eec7122a984';
- $apps[$x]['category'] = '';
- $apps[$x]['subcategory'] = '';
- $apps[$x]['version'] = '';
- $apps[$x]['license'] = 'Mozilla Public License 1.1';
- $apps[$x]['url'] = 'http://www.fusionpbx.com';
- $apps[$x]['description']['en-us'] = '';
- //permission details
- $y = 0;
- $apps[$x]['permissions'][$y]['name'] = 'permission_view';
- $apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
- $y++;
- $apps[$x]['permissions'][$y]['name'] = 'permission_add';
- $apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
- $y++;
- $apps[$x]['permissions'][$y]['name'] = 'permission_edit';
- $apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
- $y++;
- $apps[$x]['permissions'][$y]['name'] = 'permission_delete';
- $apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
- $y++;
- $apps[$x]['permissions'][$y]['name'] = 'permission_all';
- $apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
- $y++;
- //Permissions
- $y = 0;
- $apps[$x]['db'][$y]['table']['name'] = 'v_permissions';
- $apps[$x]['db'][$y]['table']['parent'] = '';
- $z = 0;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = 'permission_uuid';
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid';
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text';
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
- $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary';
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = 'application_uuid';
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid';
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text';
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
- $apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'false';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the application uuid.';
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = 'application_name';
- $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
- $apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'true';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the application name.';
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = 'permission_name';
- $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
- $apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'true';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the permission name.';
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = 'permission_description';
- $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
- $apps[$x]['db'][$y]['fields'][$z]['search_by'] = 'true';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the permission description.';
- $z++;
- ?>
|