37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
<?php
|
|
//application details
|
|
$apps[$x]['name'] = "FIFO List";
|
|
$apps[$x]['uuid'] = 'fcd0afab-164b-abd7-3971-d613598fe3da';
|
|
$apps[$x]['category'] = 'Switch';;
|
|
$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'] = 'List all the queues that are currently active with one or more callers.';
|
|
|
|
//menu details
|
|
$apps[$x]['menu'][0]['title']['en'] = 'Active Queues';
|
|
$apps[$x]['menu'][0]['uuid'] = '450f1225-9187-49ac-a119-87bc26025f7d';
|
|
$apps[$x]['menu'][0]['parent_uuid'] = '0438b504-8613-7887-c420-c837ffb20cb1';
|
|
$apps[$x]['menu'][0]['category'] = 'internal';
|
|
$apps[$x]['menu'][0]['path'] = '/app/fifo_list/v_fifo_list.php';
|
|
$apps[$x]['menu'][0]['groups'][] = 'admin';
|
|
$apps[$x]['menu'][0]['groups'][] = 'superadmin';
|
|
|
|
//permission details
|
|
$apps[$x]['permissions'][0]['name'] = 'active_queues_view';
|
|
$apps[$x]['permissions'][0]['groups'][] = 'admin';
|
|
$apps[$x]['permissions'][0]['groups'][] = 'superadmin';
|
|
|
|
$apps[$x]['permissions'][1]['name'] = 'active_queues_add';
|
|
$apps[$x]['permissions'][1]['groups'][] = 'admin';
|
|
$apps[$x]['permissions'][1]['groups'][] = 'superadmin';
|
|
|
|
$apps[$x]['permissions'][2]['name'] = 'active_queues_edit';
|
|
$apps[$x]['permissions'][2]['groups'][] = 'admin';
|
|
$apps[$x]['permissions'][2]['groups'][] = 'superadmin';
|
|
|
|
$apps[$x]['permissions'][3]['name'] = 'active_queues_delete';
|
|
$apps[$x]['permissions'][3]['groups'][] = 'admin';
|
|
$apps[$x]['permissions'][3]['groups'][] = 'superadmin';
|
|
?>
|