2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2017-06-03 20:36:08 +02:00
|
|
|
//application details
|
2012-06-04 16:58:40 +02:00
|
|
|
$apps[$x]['name'] = "FIFO List";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['uuid'] = "fcd0afab-164b-abd7-3971-d613598fe3da";
|
2017-02-16 06:39:34 +01:00
|
|
|
$apps[$x]['category'] = "Switch";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['subcategory'] = "";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['version'] = "1.0";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['license'] = "Mozilla Public License 1.1";
|
|
|
|
|
$apps[$x]['url'] = "http://www.fusionpbx.com";
|
|
|
|
|
$apps[$x]['description']['en-us'] = "List all the queues that are currently active with one or more callers.";
|
2020-03-20 21:47:13 +01:00
|
|
|
$apps[$x]['description']['en-gb'] = "List all the queues that are currently active with one or more callers.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['ar-eg'] = "";
|
|
|
|
|
$apps[$x]['description']['de-at'] = "Führt alle Warteschlangen mit einem oder mehrere aktive Anrufer auf.";
|
|
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
|
|
|
|
$apps[$x]['description']['de-de'] = "Führt alle Warteschlangen mit einem oder mehrere aktive Anrufer auf.";
|
2014-02-13 21:15:59 +01:00
|
|
|
$apps[$x]['description']['es-cl'] = "Lista todas las colas que estan siendo actualmente usadas con una o más personas en espera.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['description']['es-mx'] = "Lista todas las colas que estan siendo actualmente usadas con una o más personas en espera.";
|
2013-09-30 18:16:32 +02:00
|
|
|
$apps[$x]['description']['fr-ca'] = "Il liste toutes les queues qui sont maintenant utilisés avec une ou plus des personnes en attend.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['fr-fr'] = "Liste toutes les files d'attente actuellement utilisées avec une ou plus des personnes en attend.";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
2024-08-28 17:59:02 +02:00
|
|
|
$apps[$x]['description']['ka-ge'] = "ყველა რიგის სია, რომელიც ახლა აქტურია, ერთი ან მეტი აბონენტით.";
|
2019-11-23 01:37:36 +01:00
|
|
|
$apps[$x]['description']['nl-nl'] = "Toon alle wachtrijen waar aktieve bellers geplaatst zijn.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['pl-pl'] = "";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['description']['pt-br'] = "";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['pt-pt'] = "Liste todas as filas que estão atualmente ativas com um ou mais interlocutores.";
|
|
|
|
|
$apps[$x]['description']['ro-ro'] = "";
|
|
|
|
|
$apps[$x]['description']['ru-ru'] = "";
|
|
|
|
|
$apps[$x]['description']['sv-se'] = "";
|
|
|
|
|
$apps[$x]['description']['uk-ua'] = "";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2017-06-03 20:36:08 +02:00
|
|
|
//permission details
|
2017-02-16 06:39:34 +01:00
|
|
|
$y=0;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "active_queue_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "450f1225-9187-49ac-a119-87bc26025f7d";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "active_queue_add";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "active_queue_edit";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "active_queue_delete";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2019-11-23 01:37:36 +01:00
|
|
|
?>
|