Files
fusionpbx/app/calls_active/app_config.php
T

54 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2014-12-26 03:27:54 +00:00
//application details
$apps[$x]['name'] = "Active Calls";
$apps[$x]['uuid'] = "ec8530a9-903a-469d-3717-281f798b9ef6";
$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'] = "Active channels on the system.";
$apps[$x]['description']['ar-eg'] = "";
$apps[$x]['description']['de-at'] = "Aktive Kanäle auf dem System.";
$apps[$x]['description']['de-ch'] = "";
$apps[$x]['description']['de-de'] = "Aktive Kanäle auf dem System.";
$apps[$x]['description']['es-cl'] = "Canales activos en el sistema.";
$apps[$x]['description']['es-mx'] = "";
$apps[$x]['description']['fr-ca'] = "";
$apps[$x]['description']['fr-fr'] = "Channels actifs sur le système";
$apps[$x]['description']['he-il'] = "";
$apps[$x]['description']['it-it'] = "";
$apps[$x]['description']['nl-nl'] = "";
$apps[$x]['description']['pl-pl'] = "";
2016-08-25 14:03:51 -03:00
$apps[$x]['description']['pt-br'] = "Canais ativos no sistema.";
$apps[$x]['description']['pt-pt'] = "Canais ativos no sistema.";
$apps[$x]['description']['ro-ro'] = "";
2017-04-25 03:37:00 +05:00
$apps[$x]['description']['ru-ru'] = "Активные каналы в системе";
$apps[$x]['description']['sv-se'] = "";
$apps[$x]['description']['uk-ua'] = "";
//permission details
2017-02-15 21:40:56 -07:00
$y=0;
$apps[$x]['permissions'][0]['name'] = "call_active_view";
$apps[$x]['permissions'][0]['menu']['uuid'] = "eba3d07f-dd5c-6b7b-6880-493b44113ade";
$apps[$x]['permissions'][0]['groups'][] = "superadmin";
$apps[$x]['permissions'][0]['groups'][] = "admin";
2017-02-15 21:40:56 -07:00
//$y++;
//$apps[$x]['permissions'][1]['name'] = "call_active_transfer";
//$apps[$x]['permissions'][1]['groups'][] = "superadmin";
2017-02-15 21:40:56 -07:00
$y++;
$apps[$x]['permissions'][2]['name'] = "call_active_hangup";
$apps[$x]['permissions'][2]['groups'][] = "superadmin";
$apps[$x]['permissions'][2]['groups'][] = "admin";
2017-02-15 21:40:56 -07:00
//$y++;
//$apps[$x]['permissions'][3]['name'] = "call_active_park";
//$apps[$x]['permissions'][3]['groups'][] = "superadmin";
2017-02-15 21:40:56 -07:00
//$y++;
//$apps[$x]['permissions'][4]['name'] = "call_active_rec";
//$apps[$x]['permissions'][4]['groups'][] = "superadmin";
2017-02-15 21:40:56 -07:00
$y++;
$apps[$x]['permissions'][5]['name'] = "call_active_all";
$apps[$x]['permissions'][5]['groups'][] = "superadmin";
?>