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
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['name'] = "Ring Groups";
|
|
|
|
|
$apps[$x]['uuid'] = "1d61fb65-1eec-bc73-a6ee-a6203b4fe6f2";
|
|
|
|
|
$apps[$x]['category'] = "Switch";
|
|
|
|
|
$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'] = "A tool to call multiple extensions.";
|
2020-03-20 21:47:13 +01:00
|
|
|
$apps[$x]['description']['en-gb'] = "A tool to call multiple extensions.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['ar-eg'] = "";
|
|
|
|
|
$apps[$x]['description']['de-at'] = "Ein Werkzeug um mehrere Nebenstellen anzurufen.";
|
|
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
|
|
|
|
$apps[$x]['description']['de-de'] = "Ein Werkzeug um mehrere Nebenstellen anzurufen.";
|
2014-02-13 21:15:59 +01:00
|
|
|
$apps[$x]['description']['es-cl'] = "Una herramienta para llamar a múltiples extensiones";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['description']['es-mx'] = "";
|
2024-05-08 21:41:21 +02:00
|
|
|
$apps[$x]['description']['fr-ca'] = "Outil pour appeler plusieurs extensions";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['fr-fr'] = "Outil pour appeler plusieurs extensions.";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
2024-08-31 18:02:51 +02:00
|
|
|
$apps[$x]['description']['ka-ge'] = "ხელსაწყო ერთზე მეტ ნომერთან დასარეკად.";
|
2019-11-23 01:37:36 +01:00
|
|
|
$apps[$x]['description']['nl-nl'] = "Een gereedschap om meerdere toestellen te bellen.";
|
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'] = "Uma ferramenta para chamar várias extensões.";
|
|
|
|
|
$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 07:16:28 +01:00
|
|
|
$y=0;
|
2015-08-04 22:52:10 +02:00
|
|
|
$apps[$x]['destinations'][$y]['type'] = "sql";
|
|
|
|
|
$apps[$x]['destinations'][$y]['label'] = "ring_groups";
|
|
|
|
|
$apps[$x]['destinations'][$y]['name'] = "ring_groups";
|
2015-08-06 01:17:39 +02:00
|
|
|
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '\${domain_uuid}' and ring_group_enabled = 'true' ";
|
2023-10-19 20:02:00 +02:00
|
|
|
$apps[$x]['destinations'][$y]['order_by'] = "natural_sort(ring_group_extension) asc";
|
2020-08-24 17:11:50 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['ring_group_uuid'] = "ring_group_uuid";
|
2023-10-13 07:58:11 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['uuid'] = "ring_group_uuid";
|
2015-08-04 22:52:10 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['name'] = "ring_group_name";
|
|
|
|
|
$apps[$x]['destinations'][$y]['field']['destination'] = "ring_group_extension";
|
2020-09-29 19:43:48 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['extension'] = "ring_group_extension";
|
2015-08-04 22:52:10 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['description'] = "ring_group_description";
|
2019-07-01 17:55:12 +02:00
|
|
|
$apps[$x]['destinations'][$y]['field']['context'] = "ring_group_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}";
|
|
|
|
|
|
2021-04-13 23:16:09 +02:00
|
|
|
//cache details
|
|
|
|
|
$apps[$x]['cache']['key'] = "dialplan.\${ring_group_context}";
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//permission details
|
2017-02-16 07:16:28 +01:00
|
|
|
$y=0;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_view";
|
2013-10-18 00:06:53 +02:00
|
|
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "b30f085f-3ec6-2819-7e62-53dfba5cb8d5";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2023-09-23 01:14:27 +02:00
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "user";
|
2013-09-30 18:21:08 +02:00
|
|
|
$y++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_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'] = "ring_group_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'] = "ring_group_delete";
|
|
|
|
|
$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'] = "ring_group_forward";
|
|
|
|
|
$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'] = "ring_group_prompt";
|
2014-08-14 05:40:48 +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'] = "ring_group_destination_view";
|
|
|
|
|
$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'] = "ring_group_destination_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'] = "ring_group_destination_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'] = "ring_group_destination_delete";
|
|
|
|
|
$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'] = "ring_group_user_view";
|
|
|
|
|
$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'] = "ring_group_user_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'] = "ring_group_user_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'] = "ring_group_user_delete";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2015-06-19 18:33:05 +02:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_missed_call";
|
2016-05-11 21:05:56 +02:00
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2017-04-19 22:12:14 +02:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_forward_toll_allow";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2018-04-06 02:40:43 +02:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_caller_id_name";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_caller_id_number";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_cid_name_prefix";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_cid_number_prefix";
|
2018-11-03 18:26:31 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_context";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2019-10-25 20:53:13 +02:00
|
|
|
$y++;
|
2023-09-23 01:14:27 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_domain";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2023-11-06 21:13:03 +01:00
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2023-09-23 01:14:27 +02:00
|
|
|
$y++;
|
2019-10-25 20:53:13 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_all";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2020-01-21 17:43:19 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_destinations";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2024-09-16 00:47:53 +02:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_call_screen_enabled";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2013-07-27 23:21:37 +02:00
|
|
|
|
2017-01-13 06:50:48 +01:00
|
|
|
//default settings
|
2017-02-16 07:16:28 +01:00
|
|
|
$y=0;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "745d8fdc-57bc-4f43-97d7-508fda8f70a8";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "destination_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'] = "";
|
2017-01-13 06:50:48 +01:00
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "ddf306c9-6f58-40f7-910e-2f27dc33fa57";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "destination_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'] = "";
|
2017-04-30 07:21:07 +02:00
|
|
|
$y++;
|
2022-01-31 23:25:50 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "9917d8e3-1c3c-4771-b2c6-e931c448d6e0";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "destination_delay_max";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "numeric";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "999";
|
|
|
|
|
$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'] = "c54fc772-7aa5-40de-8da8-39e0e707658e";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "destination_timeout_max";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "numeric";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "999";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
|
|
|
|
|
$y++;
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "de655030-ae71-4b53-8068-5cf0b14cf635";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "limit";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "ring_groups";
|
|
|
|
|
$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'] = "";
|
2023-02-18 00:02:25 +01:00
|
|
|
$y++;
|
2024-05-08 21:41:21 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "16b1df88-597c-4081-8655-82064a30a2c0";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "theme";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "dashboard_ring_group_forward_chart_color_forwarding";
|
2023-02-18 00:02:25 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "#ea4c46";
|
2024-05-08 21:41:21 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
2023-02-18 00:02:25 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
|
|
|
|
|
$y++;
|
2024-05-08 21:41:21 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "5e511af3-671f-45dd-9a0d-945637abd5fb";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "theme";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "dashboard_ring_group_forward_chart_color_active";
|
2023-02-18 00:02:25 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "#d4d4d4";
|
2024-05-08 21:41:21 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
2023-02-18 00:02:25 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
|
2023-11-14 02:50:25 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "88297698-339d-4971-8019-3f7095ec1f33";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "destination_range_enabled";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "boolean";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "true";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Enable or disable the feature to add a range of extensions.";
|
2024-03-05 00:50:37 +01:00
|
|
|
$y++;
|
2024-05-31 01:58:05 +02:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "b8fbc27a-e44d-4b27-879f-33ba50e24647";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$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'] = "700-799";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set the suggested extension range(s) for ring groups";
|
|
|
|
|
$y++;
|
2024-03-05 00:50:37 +01:00
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "d25c1e2b-4098-408e-959b-c789ba4691e1";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "diversion_enabled";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "boolean";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "false";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Enable or disable the adding diversion header for external destinations.";
|
2024-10-04 07:28:36 +02:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "739019e3-d04e-4b4a-b556-78323c9b7512";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "default_ringback";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
|
2025-03-22 23:06:18 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "50cbb1bb-3d67-4320-9f7e-0b09aa09676d";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = "ring_group";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "ring_ready";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_name'] = "boolean";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_value'] = "true";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
|
|
|
|
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Add ring_ready in the dialplan to send 180 ringing to calling party";
|
2017-01-13 06:50:48 +01:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//schema details
|
2017-02-16 07:16:28 +01:00
|
|
|
$y=0;
|
|
|
|
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_groups";
|
|
|
|
|
$apps[$x]['db'][$y]['table']['parent'] = "";
|
|
|
|
|
$z=0;
|
2013-10-01 13:35:07 +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";
|
2013-12-31 11:40:38 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_domains";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "domain_uuid";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_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";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_name";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-09 04:48:58 +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'] = "Enter the name.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_extension";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-09 04:48:58 +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'] = "Enter the extension.";
|
|
|
|
|
$z++;
|
2018-02-10 21:15:26 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_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'] = "ring_group_context";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the context.";
|
|
|
|
|
$z++;
|
2018-05-08 03:35:17 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_call_timeout";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the call timeout.";
|
|
|
|
|
$z++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_forward_destination";
|
2013-11-02 07:45:30 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "varchar(255)";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the call forward destination.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_forward_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select enable or disable the ring group call forward.";
|
|
|
|
|
$z++;
|
2018-04-05 22:52:30 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_caller_id_name";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the caller ID name.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_caller_id_number";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the caller ID number.";
|
|
|
|
|
$z++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_cid_name_prefix";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2014-09-06 09:45:17 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the caller ID name prefix.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_cid_number_prefix";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the caller ID number prefix.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_strategy";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-09 04:48:58 +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'] = "Select the strategy.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_timeout_app";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the timeout destination.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_timeout_data";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the timeout destination.";
|
|
|
|
|
$z++;
|
2015-06-04 07:26:12 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_distinctive_ring";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select a sound for distinctive ring.";
|
|
|
|
|
$z++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_ringback";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the ringback.";
|
|
|
|
|
$z++;
|
2024-09-16 00:47:53 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_call_screen_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
|
|
$z++;
|
2020-04-11 06:34:09 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_call_forward_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Choose to follow a ring group destination's call forward.";
|
|
|
|
|
$z++;
|
2019-10-02 20:42:55 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_follow_me_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-04-11 06:34:09 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Choose to follow a ring group destination's follow me.";
|
2019-10-02 20:42:55 +02:00
|
|
|
$z++;
|
2015-06-19 18:33:05 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_missed_call_app";
|
|
|
|
|
$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'] = "ring_group_missed_call_data";
|
|
|
|
|
$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'] = "ring_group_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select enable or disable the ring group.";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_description";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-09 04:48:58 +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'] = "Enter the description.";
|
|
|
|
|
$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";
|
2019-03-24 15:04:45 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_dialplans";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "dialplan_uuid";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
2012-06-04 16:58:40 +02:00
|
|
|
$z++;
|
2017-04-19 22:12:14 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_forward_toll_allow";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Toll Allow for Ring Group Forward.";
|
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'] = "";
|
2013-07-24 21:37:59 +02:00
|
|
|
|
2017-02-16 07:16:28 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_destinations";
|
|
|
|
|
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
|
|
|
|
$z=0;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_destination_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";
|
|
|
|
|
$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";
|
2013-12-31 11:40:38 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_domains";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "domain_uuid";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_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";
|
2013-12-31 11:40:38 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_ring_groups";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "ring_group_uuid";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_number";
|
2013-11-02 07:45:30 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "varchar(255)";
|
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'] = "destination_delay";
|
|
|
|
|
$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'] = "destination_timeout";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
|
|
$z++;
|
2023-01-21 02:25:13 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_enabled";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "boolean";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "text";
|
2023-01-21 02:30:34 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false'];
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_prompt";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
2023-01-21 02:25:13 +01:00
|
|
|
$z++;
|
2022-09-18 08:54:37 +02:00
|
|
|
$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'] = "";
|
2024-02-05 18:57:12 +01:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_description";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text";
|
|
|
|
|
$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'] = "";
|
2013-08-16 06:50:30 +02:00
|
|
|
|
2017-02-16 07:16:28 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_users";
|
|
|
|
|
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
|
|
|
|
$z=0;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "ring_group_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'] = "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'] = "ring_group_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_ring_groups";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "ring_group_uuid";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
|
|
$z++;
|
|
|
|
|
$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'] = "";
|
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'] = "";
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2023-09-23 01:14:27 +02:00
|
|
|
?>
|