2012-06-04 16:58:40 +02:00
< ? php
2014-12-26 04:27:54 +01:00
2012-06-04 16:58:40 +02:00
//application details
$apps [ $x ][ 'name' ] = " Call Center " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'uuid' ] = " 95788e50-9500-079e-2807-fd530b0ea370 " ;
2015-06-21 07:43:06 +02:00
$apps [ $x ][ 'category' ] = " Switch " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'subcategory' ] = " " ;
2021-08-27 19:08:56 +02:00
$apps [ $x ][ 'version' ] = " 1.1 " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'license' ] = " Mozilla Public License 1.1 " ;
$apps [ $x ][ 'url' ] = " http://www.fusionpbx.com " ;
2013-09-30 18:21:08 +02:00
$apps [ $x ][ 'description' ][ 'en-us' ] = " Queues for managing inbound calls and routing those calls to available agents. " ;
2020-03-20 21:47:13 +01:00
$apps [ $x ][ 'description' ][ 'en-gb' ] = " Queues for managing inbound calls and routing those calls to available agents. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'ar-eg' ] = " " ;
2017-04-27 07:41:55 +02:00
$apps [ $x ][ 'description' ][ 'de-at' ] = " Warteschlangen um eingehende Anrufe zu verwalten und diese an verfügbare Agenten weiterzuleiten. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'de-ch' ] = " " ;
$apps [ $x ][ 'description' ][ 'de-de' ] = " Warteschlangen um eingehende Anrufe zu verwalten und diese an verfügbare Agenten weiterzuleiten. " ;
2019-12-04 08:22:48 +01:00
$apps [ $x ][ 'description' ][ 'el-gr' ] = " Ουρές γ ι α διαχείριση εισερχόμενων κλήσεων και δρομολόγησης των κλήσεων σε διαθέσιμους τηλεφωνητές/τηλεφωνήτριες. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'es-cl' ] = " Colas pra administar las llamadas entrantes y enviarlas a los agentes disponibles " ;
$apps [ $x ][ 'description' ][ 'es-mx' ] = " " ;
2013-09-30 18:21:08 +02:00
$apps [ $x ][ 'description' ][ 'fr-ca' ] = " Queues pour envoyer les appels entrants vers les agents disponibles. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'fr-fr' ] = " Files d'attente d'appels entrants distribu%uFFFDs aux agents disponibles. " ;
$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-17 22:15:26 +01:00
$apps [ $x ][ 'description' ][ 'nl-nl' ] = " Wachtrijen voor beheer van inkomede gesprekken en routering naar beschikbare agenten. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'pl-pl' ] = " " ;
2016-08-25 19:03:51 +02:00
$apps [ $x ][ 'description' ][ 'pt-br' ] = " As filas servem para gerenciar as chamadas que entram e encaminhar as mesmas para os agentes disponíveis. " ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'description' ][ 'pt-pt' ] = " As filas servem para gerenciamento de chamadas de entrada e encaminhamento das mesmas para os agentes dispon%uFFFDveis. " ;
$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
2015-08-04 22:52:10 +02:00
//destination details
2017-02-16 05:32:01 +01:00
$y = 0 ;
2015-08-04 22:52:10 +02:00
$apps [ $x ][ 'destinations' ][ $y ][ 'type' ] = " sql " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'label' ] = " call_centers " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'name' ] = " call_centers " ;
2023-12-01 22:58:35 +01:00
$apps [ $x ][ 'destinations' ][ $y ][ 'sql' ] = " select call_center_queue_uuid, call_center_queue_uuid as uuid, queue_name as name, queue_extension as destination, " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'sql' ] .= " queue_extension as extension, queue_context as context, queue_description as description from v_call_center_queues " ;
2015-08-06 01:17:39 +02:00
$apps [ $x ][ 'destinations' ][ $y ][ 'where' ] = " where domain_uuid = ' \$ { domain_uuid}' " ;
2023-10-19 20:02:00 +02:00
$apps [ $x ][ 'destinations' ][ $y ][ 'order_by' ] = " natural_sort(queue_extension) asc " ;
2015-08-04 22:52:10 +02:00
$apps [ $x ][ 'destinations' ][ $y ][ 'field' ][ 'name' ] = " queue_name " ;
2023-12-01 22:58:35 +01:00
$apps [ $x ][ 'destinations' ][ $y ][ 'field' ][ 'destination' ] = " extension " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'field' ][ 'extension' ] = " extension " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'field' ][ 'description' ] = " description " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'field' ][ 'context' ] = " context " ;
2015-08-04 22:52:10 +02:00
$apps [ $x ][ 'destinations' ][ $y ][ 'select_value' ][ 'dialplan' ] = " transfer: \$ { destination} XML \$ { context} " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'select_value' ][ 'ivr' ] = " menu-exec-app:transfer \$ { destination} XML \$ { context} " ;
$apps [ $x ][ 'destinations' ][ $y ][ 'select_label' ] = " \$ { destination} \$ { name} \$ { description} " ;
2012-06-04 16:58:40 +02:00
//permission details
2017-02-16 05:32:01 +01:00
$y = 0 ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_queue_view " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'menu' ][ 'uuid' ] = " 6c072b29-5b6c-49fc-008e-95e24c77de99 " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " agent " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_queue_add " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_queue_edit " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_queue_delete " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2023-11-29 21:26:48 +01:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_queue_context " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$y ++ ;
2022-01-20 23:54:42 +01:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_all " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_agent_view " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'menu' ][ 'uuid' ] = " 597c483a-51a9-f95a-8d54-ea7d87ada2b8 " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_agent_add " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_agent_edit " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_agent_delete " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_tier_view " ;
2013-10-18 00:06:53 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'menu' ][ 'uuid' ] = " 6c072b29-5b6c-49fc-008e-95e24c77de99 " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_tier_add " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_tier_edit " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_tier_delete " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_log_view " ;
2013-10-18 00:06:53 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'menu' ][ 'uuid' ] = " 6c072b29-5b6c-49fc-008e-95e24c77de99 " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_log_add " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_log_edit " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
2013-09-30 18:21:08 +02:00
$y ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_log_delete " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
2018-01-28 12:52:25 +01:00
$y ++ ;
2020-01-21 17:43:19 +01:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_destinations " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$y ++ ;
2020-09-29 19:45:52 +02:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_outbound_caller_id_name " ;
//$apps[$x]['permissions'][$y]['groups'][] = "admin";
//$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y ++ ;
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_outbound_caller_id_number " ;
2021-08-27 19:08:56 +02:00
//$apps[$x]['permissions'][$y]['groups'][] = "admin";
2020-09-29 19:45:52 +02:00
//$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
2021-08-27 19:08:56 +02:00
$y ++ ;
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_announce_position " ;
2020-09-29 19:45:52 +02:00
//$apps[$x]['permissions'][$y]['groups'][] = "admin";
2021-08-27 19:08:56 +02:00
//$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y ++ ;
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_announce_sound " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
$y ++ ;
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_announce_frequency " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " admin " ;
$apps [ $x ][ 'permissions' ][ $y ][ 'groups' ][] = " superadmin " ;
2020-09-29 19:45:52 +02:00
$y ++ ;
2022-11-18 08:02:43 +01:00
$apps [ $x ][ 'permissions' ][ $y ][ 'name' ] = " call_center_email_address " ;
//$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y ++ ;
2012-06-04 16:58:40 +02:00
2017-04-30 07:28:32 +02:00
//default settings
$y = 0 ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " 8ebeb864-f03e-406c-b82f-6eb47cb1bd39 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " limit " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " call_center_queues " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " numeric " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " 3 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " false " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " " ;
2018-04-04 23:57:41 +02:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " b32179ad-96a4-4d83-8677-1fd8fc5ef6df " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " agent_add_rows " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " numeric " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " 5 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " " ;
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " 533eac69-887f-47aa-bf27-0751797555f5 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " agent_edit_rows " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " numeric " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " 1 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " " ;
2020-12-02 20:11:56 +01:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " bc73c8eb-f3eb-4182-adc0-9ac5aeedae2a " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " agent_contact_method " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " text " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " user " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Options: user (default) " ;
2023-08-15 04:28:42 +02:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " b8f8a95c-0167-4768-8aab-c386f64bdd06 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " refresh " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " numeric " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " 1500 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Set the refresh rate in seconds (<=120) or milliseconds (>=500). " ;
2023-11-16 07:17:43 +01:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " ca34cbc0-e071-432e-afd6-b587aa52bd85 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " queue_login " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " text " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " static " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Agent queue login options: dynamic, static " ;
2023-11-24 17:32:39 +01:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " 1bdf7b53-356f-4a81-85de-eeed4d26b7c5 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " export_vars " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " array " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " hold_music " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " true " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Pass through hold_music variable. " ;
2023-12-18 18:33:47 +01:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " f7ecaf4b-8228-4f15-9df1-c694a8259aab " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " record_name " ;
2023-12-18 18:48:40 +01:00
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " text " ;
2023-12-18 18:33:47 +01:00
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " \$ { sip_from_user}- \$ { sip_to_user}- \$ { strftime(%Y)} \$ { strftime(%b)} \$ { strftime(%d)}. \$ { record_ext} " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " false " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Custom name for call recording. Options: \$ { record_ext}, \$ { sip_from_user}, \$ { sip_to_user}, \$ { caller_id_number}, \$ { uuid} " ;
2024-05-31 01:58:05 +02:00
$y ++ ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_uuid' ] = " 4c939d81-7192-4d9a-b7c4-76695a005d4f " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_category' ] = " call_center " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_subcategory' ] = " extension_range " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_name' ] = " text " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_value' ] = " 400-499 " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_enabled' ] = " false " ;
$apps [ $x ][ 'default_settings' ][ $y ][ 'default_setting_description' ] = " Set the suggested extension range(s) for call center queues " ;
2023-11-29 21:26:48 +01:00
2019-07-30 09:37:57 +02:00
//cache details
$apps [ $x ][ 'cache' ][ 'key' ] = " dialplan. \$ { domain_name} " ;
2012-06-04 16:58:40 +02:00
//schema details
2017-02-16 05:32:01 +01:00
$y = 0 ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'name' ] = " v_call_center_agents " ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'parent' ] = " " ;
$z = 0 ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ][ 'text' ] = " id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ][ 'deprecated' ] = " call_center_agent_id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " serial " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " integer " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " INT NOT NULL AUTO_INCREMENT " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'deprecated' ] = " true " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " call_center_agent_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " primary " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_domains " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2017-05-16 18:25:17 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " user_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_users " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " user_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " v_id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'deprecated' ] = " true " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_name " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_type " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_call_timeout " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2015-05-03 18:55:43 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_password " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2015-05-04 04:50:31 +02:00
$z ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_contact " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_status " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_logout " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_max_no_answer " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_wrap_up_time " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_reject_delay_time " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_busy_delay_time " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_no_answer_delay_time " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
2021-01-29 19:56:04 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_record " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2022-09-18 08:54:37 +02:00
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2012-06-04 16:58:40 +02:00
2017-02-16 05:32:01 +01:00
$y ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'name' ] = " v_call_center_queues " ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'parent' ] = " " ;
$z = 0 ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ][ 'text' ] = " id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ][ 'deprecated' ] = " call_center_queue_id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " serial " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " integer " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " INT NOT NULL AUTO_INCREMENT " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'deprecated' ] = " true " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " call_center_queue_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " primary " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_domains " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " dialplan_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_dialplans " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " dialplan_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " v_id " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'deprecated' ] = " true " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_name " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
2020-01-08 21:07:42 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'search' ] = 'true' ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_extension " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2018-07-19 00:59:21 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_greeting " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " Select the greeting. " ;
$z ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_strategy " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_moh_sound " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_record_template " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_time_base_score " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2021-03-06 22:09:33 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_time_base_score_sec " ;
2021-03-06 21:47:13 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " Used to set the time base score of the Call Center to prioritize one call center over another. " ;
$z ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_max_wait_time " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_max_wait_time_with_no_agent " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_max_wait_time_with_no_agent_time_reached " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_tier_rules_apply " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_tier_rule_wait_second " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_tier_rule_no_agent_no_wait " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_timeout_action " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_discard_abandoned_after " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_abandoned_resume_allowed " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_tier_rule_wait_multiply_level " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_cid_prefix " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2020-09-29 19:53:09 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_outbound_caller_id_name " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_outbound_caller_id_number " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2021-08-31 06:25:31 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_announce_position " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2014-08-07 17:46:44 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_announce_sound " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_announce_frequency " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2017-06-03 17:00:20 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_cc_exit_keys " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2017-04-18 20:03:41 +02:00
$z ++ ;
2022-11-18 08:02:43 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_email_address " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'search' ] = 'true' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2023-11-29 21:26:48 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_context " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_description " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
2020-01-08 21:07:42 +01:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'search' ] = 'true' ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2022-09-18 08:54:37 +02:00
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2012-06-04 16:58:40 +02:00
2017-02-16 05:32:01 +01:00
$y ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'name' ] = " v_call_center_tiers " ;
$apps [ $x ][ 'db' ][ $y ][ 'table' ][ 'parent' ] = " " ;
$z = 0 ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " call_center_tier_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " primary " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2018-03-31 19:08:48 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_domains " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " domain_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2016-10-05 14:03:28 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " call_center_queue_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_call_center_queues " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " call_center_queue_uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
2018-03-31 19:08:48 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " call_center_agent_uuid " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
2018-03-31 19:08:48 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " primary " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'type' ] = " foreign " ;
2018-03-31 19:08:48 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'table' ] = " v_call_center_agents " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'key' ][ 'reference' ][ 'field' ] = " call_center_agent_uuid " ;
2013-10-01 13:35:07 +02:00
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " agent_name " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " queue_name " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " tier_level " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " tier_position " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ] = " numeric " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2022-09-18 08:54:37 +02:00
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " insert_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_date " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = 'timestamptz' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = 'date' ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
$z ++ ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'name' ] = " update_user " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'pgsql' ] = " uuid " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'sqlite' ] = " text " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'type' ][ 'mysql' ] = " char(36) " ;
$apps [ $x ][ 'db' ][ $y ][ 'fields' ][ $z ][ 'description' ][ 'en-us' ] = " " ;
2012-06-04 16:58:40 +02:00
2018-01-28 12:52:25 +01:00
?>