2014-12-03 12:05:13 +01:00
|
|
|
<?php
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2014-12-03 12:05:13 +01:00
|
|
|
//application details
|
|
|
|
|
$apps[$x]['name'] = "Operator Panel";
|
2014-12-03 13:35:52 +01:00
|
|
|
$apps[$x]['uuid'] = 'dd3d173a-5d51-4231-ab22-b18c5b712bb2';
|
2014-12-03 12:05:13 +01:00
|
|
|
$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-us'] = 'Operator panel shows the status.';
|
|
|
|
|
$apps[$x]['description']['es-mx'] = '';
|
2017-04-27 07:41:55 +02:00
|
|
|
$apps[$x]['description']['de-de'] = 'Das Bedienfeld zeigt den Status an.';
|
2014-12-03 12:05:13 +01:00
|
|
|
$apps[$x]['description']['de-ch'] = '';
|
2017-04-27 07:41:55 +02:00
|
|
|
$apps[$x]['description']['de-at'] = 'Das Bedienfeld zeigt den Status an.';
|
2014-12-03 12:05:13 +01:00
|
|
|
$apps[$x]['description']['fr'] = '';
|
|
|
|
|
$apps[$x]['description']['fr-ca'] = '';
|
|
|
|
|
$apps[$x]['description']['fr-ch'] = '';
|
|
|
|
|
$apps[$x]['description']['pt-pt'] = 'Canais ativos no sistema.';
|
|
|
|
|
$apps[$x]['description']['pt-br'] = '';
|
|
|
|
|
|
|
|
|
|
//permission details
|
2017-02-16 06:51:43 +01:00
|
|
|
$y=0;
|
2014-12-09 04:38:02 +01:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_view';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'admin';
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_manage';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'admin';
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_eavesdrop';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'admin';
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_kill';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'admin';
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_record';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = 'admin';
|
2015-01-15 19:55:24 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = 'operator_panel_on_demand';
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2017-02-16 06:51:43 +01:00
|
|
|
?>
|