Fork of FusionPBX but with LDAP kinda working
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.4 KiB

2 years ago
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Active Calls";
  4. $apps[$x]['uuid'] = "ec8530a9-903a-469d-3717-281f798b9ef6";
  5. $apps[$x]['category'] = "Switch";;
  6. $apps[$x]['subcategory'] = "";
  7. $apps[$x]['version'] = "1.0";
  8. $apps[$x]['license'] = "Mozilla Public License 1.1";
  9. $apps[$x]['url'] = "http://www.fusionpbx.com";
  10. $apps[$x]['description']['en-us'] = "Active channels on the system.";
  11. $apps[$x]['description']['en-gb'] = "Active channels on the system.";
  12. $apps[$x]['description']['ar-eg'] = "";
  13. $apps[$x]['description']['de-at'] = "Aktive Kanäle auf dem System.";
  14. $apps[$x]['description']['de-ch'] = "";
  15. $apps[$x]['description']['de-de'] = "Aktive Kanäle auf dem System.";
  16. $apps[$x]['description']['es-cl'] = "Canales activos en el sistema.";
  17. $apps[$x]['description']['es-mx'] = "";
  18. $apps[$x]['description']['fr-ca'] = "";
  19. $apps[$x]['description']['fr-fr'] = "Channels actifs sur le système";
  20. $apps[$x]['description']['he-il'] = "";
  21. $apps[$x]['description']['it-it'] = "";
  22. $apps[$x]['description']['nl-nl'] = "Aktieve kanalen in het systeem";
  23. $apps[$x]['description']['pl-pl'] = "";
  24. $apps[$x]['description']['pt-br'] = "Canais ativos no sistema.";
  25. $apps[$x]['description']['pt-pt'] = "Canais ativos no sistema.";
  26. $apps[$x]['description']['ro-ro'] = "";
  27. $apps[$x]['description']['ru-ru'] = "Активные каналы в системе";
  28. $apps[$x]['description']['sv-se'] = "";
  29. $apps[$x]['description']['uk-ua'] = "";
  30. //permission details
  31. $y=0;
  32. $apps[$x]['permissions'][0]['name'] = "call_active_view";
  33. $apps[$x]['permissions'][0]['menu']['uuid'] = "eba3d07f-dd5c-6b7b-6880-493b44113ade";
  34. $apps[$x]['permissions'][0]['groups'][] = "superadmin";
  35. $apps[$x]['permissions'][0]['groups'][] = "admin";
  36. //$y++;
  37. //$apps[$x]['permissions'][1]['name'] = "call_active_transfer";
  38. //$apps[$x]['permissions'][1]['groups'][] = "superadmin";
  39. $y++;
  40. $apps[$x]['permissions'][2]['name'] = "call_active_hangup";
  41. $apps[$x]['permissions'][2]['groups'][] = "superadmin";
  42. $apps[$x]['permissions'][2]['groups'][] = "admin";
  43. //$y++;
  44. //$apps[$x]['permissions'][3]['name'] = "call_active_park";
  45. //$apps[$x]['permissions'][3]['groups'][] = "superadmin";
  46. //$y++;
  47. //$apps[$x]['permissions'][4]['name'] = "call_active_rec";
  48. //$apps[$x]['permissions'][4]['groups'][] = "superadmin";
  49. $y++;
  50. $apps[$x]['permissions'][5]['name'] = "call_active_all";
  51. $apps[$x]['permissions'][5]['groups'][] = "superadmin";
  52. ?>