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";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['uuid'] = "dd3d173a-5d51-4231-ab22-b18c5b712bb2";
|
|
|
|
|
$apps[$x]['category'] = "Switch";
|
|
|
|
|
$apps[$x]['subcategory'] = "";
|
|
|
|
|
$apps[$x]['version'] = "1.0";
|
|
|
|
|
$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']['ar-eg'] = "";
|
|
|
|
|
$apps[$x]['description']['de-at'] = "Das Bedienfeld zeigt den Status an.";
|
|
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
|
|
|
|
$apps[$x]['description']['de-de'] = "Das Bedienfeld zeigt den Status an.";
|
|
|
|
|
$apps[$x]['description']['es-cl'] = "";
|
|
|
|
|
$apps[$x]['description']['es-mx'] = "";
|
|
|
|
|
$apps[$x]['description']['fr-ca'] = "";
|
|
|
|
|
$apps[$x]['description']['fr-fr'] = "";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
|
|
|
|
$apps[$x]['description']['nl-nl'] = "";
|
|
|
|
|
$apps[$x]['description']['pl-pl'] = "";
|
|
|
|
|
$apps[$x]['description']['pt-br'] = "";
|
|
|
|
|
$apps[$x]['description']['pt-pt'] = "Canais ativos no sistema.";
|
|
|
|
|
$apps[$x]['description']['ro-ro'] = "";
|
|
|
|
|
$apps[$x]['description']['ru-ru'] = "";
|
|
|
|
|
$apps[$x]['description']['sv-se'] = "";
|
|
|
|
|
$apps[$x]['description']['uk-ua'] = "";
|
2014-12-03 12:05:13 +01:00
|
|
|
|
|
|
|
|
//permission details
|
2017-02-16 06:51:43 +01:00
|
|
|
$y=0;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2014-12-09 04:38:02 +01:00
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_manage";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2014-12-09 04:38:02 +01:00
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_eavesdrop";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2014-12-09 04:38:02 +01:00
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_kill";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2014-12-09 04:38:02 +01:00
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$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++;
|
2018-05-04 04:10:30 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_call_details";
|
|
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "operator_panel_on_demand";
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2018-05-04 04:10:30 +02:00
|
|
|
?>
|