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.

53 lines
2.9 KiB

2 years ago
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "FIFO";
  4. $apps[$x]['uuid'] = "16589224-c876-aeb3-f59f-523a1c0801f7";
  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'] = "Queues are used to setup waiting lines for callers. Also known as FIFO Queues.";
  11. $apps[$x]['description']['en-gb'] = "Queues are used to setup waiting lines for callers. Also known as FIFO Queues.";
  12. $apps[$x]['description']['ar-eg'] = "";
  13. $apps[$x]['description']['de-at'] = "Warteschlangen werden verwendet um Warteschleifen für Anrufer bereit zu stellen. Diese sind auch als FIFO-Warteschlangen bekannt.";
  14. $apps[$x]['description']['de-ch'] = "";
  15. $apps[$x]['description']['de-de'] = "Warteschlangen werden verwendet um Warteschleifen für Anrufer bereit zu stellen. Diese sind auch als FIFO-Warteschlangen bekannt.";
  16. $apps[$x]['description']['es-cl'] = "Las colas son usadas para configurar líneas de espera. Son conocidas como colas FIFO.";
  17. $apps[$x]['description']['es-mx'] = "Las cosas son usadas para configurar líneas de espera. Son conocidas como colas FIFO.";
  18. $apps[$x]['description']['fr-ca'] = "";
  19. $apps[$x]['description']['fr-fr'] = "Les queues sont utilisés pour configurer les salles d'attente (FIFO).";
  20. $apps[$x]['description']['he-il'] = "";
  21. $apps[$x]['description']['it-it'] = "Le code sono usate per creare linee di attesa per i chiamanti. Anche dette Code FIFO.";
  22. $apps[$x]['description']['nl-nl'] = "Wachtrijen worden gebruikt om bellers op volgorde FIFO af te handelen.";
  23. $apps[$x]['description']['pl-pl'] = "";
  24. $apps[$x]['description']['pt-br'] = "";
  25. $apps[$x]['description']['pt-pt'] = "As filas são usados​para configurar as filas de espera para chamadores. Também conhecida como filas FIFO.";
  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'][$y]['name'] = "fifo_view";
  33. $apps[$x]['permissions'][$y]['menu']['uuid'] = "c535ac0b-1da1-0f9c-4653-7934c6f4732c";
  34. $apps[$x]['permissions'][$y]['groups'][] = "admin";
  35. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  36. $y++;
  37. $apps[$x]['permissions'][$y]['name'] = "fifo_add";
  38. $apps[$x]['permissions'][$y]['groups'][] = "admin";
  39. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  40. $y++;
  41. $apps[$x]['permissions'][$y]['name'] = "fifo_edit";
  42. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  43. $y++;
  44. $apps[$x]['permissions'][$y]['name'] = "fifo_delete";
  45. $apps[$x]['permissions'][$y]['groups'][] = "admin";
  46. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  47. //cache details
  48. $apps[$x]['cache']['key'] = "dialplan.\${domain_name}";
  49. ?>