2012-09-14 22:50:34 +02:00
|
|
|
<?php
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2012-09-14 22:50:34 +02:00
|
|
|
//application details
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['name'] = "Call Flows";
|
|
|
|
|
$apps[$x]['uuid'] = "b1b70f85-6b42-429b-8c5a-60c8b02b7d14";
|
|
|
|
|
$apps[$x]['category'] = "";
|
|
|
|
|
$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";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['en-us'] = "Direct calls between two destinations by calling a feature code.";
|
2020-03-20 21:47:13 +01:00
|
|
|
$apps[$x]['description']['en-gb'] = "Direct calls between two destinations by calling a feature code.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['ar-eg'] = "";
|
2017-06-30 23:23:01 +02:00
|
|
|
$apps[$x]['description']['de-at'] = "Anrufe zwischen zwei Ziele anhand eines Funktions-Codes steuern.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
2017-06-30 23:23:01 +02:00
|
|
|
$apps[$x]['description']['de-de'] = "Anrufe zwischen zwei Ziele anhand eines Funktions-Codes steuern.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['es-cl'] = "";
|
|
|
|
|
$apps[$x]['description']['es-mx'] = "";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['description']['fr-ca'] = "";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['fr-fr'] = "";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
2019-11-17 22:15:26 +01:00
|
|
|
$apps[$x]['description']['nl-nl'] = "Directe oproepen tussen twee bestemmingen via een feature code.";
|
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'] = "";
|
|
|
|
|
$apps[$x]['description']['ro-ro'] = "";
|
|
|
|
|
$apps[$x]['description']['ru-ru'] = "";
|
|
|
|
|
$apps[$x]['description']['sv-se'] = "";
|
|
|
|
|
$apps[$x]['description']['uk-ua'] = "";
|
2012-09-14 22:50:34 +02:00
|
|
|
|
2015-08-04 22:52:10 +02:00
|
|
|
//destination details
|
2017-02-16 05:32:45 +01:00
|
|
|
$y=0;
|
2015-08-04 22:52:10 +02:00
|
|
|
$apps[$x]['destinations'][$y]['type'] = "sql";
|
|
|
|
|
$apps[$x]['destinations'][$y]['label'] = "call_flows";
|
|
|
|
|
$apps[$x]['destinations'][$y]['name'] = "call_flows";
|
2020-04-04 01:36:18 +02:00
|
|
|
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '\${domain_uuid}' and call_flow_enabled = 'true' ";
|
2015-08-04 22:52:10 +02:00
|
|
|
$apps[$x]['destinations'][$y]['order_by'] = "call_flow_name asc";
|
|
|
|
|
$apps[$x]['destinations'][$y]['field']['context'] = "call_flow_context";
|
|
|
|
|
$apps[$x]['destinations'][$y]['field']['name'] = "call_flow_name";
|
|
|
|
|
$apps[$x]['destinations'][$y]['field']['destination'] = "call_flow_extension";
|
|
|
|
|
$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}";
|
|
|
|
|
|
2012-09-14 22:50:34 +02:00
|
|
|
//permission details
|
2017-02-16 05:32:45 +01:00
|
|
|
$y=0;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "b0939384-7055-44e8-8b4c-9f72293e1878";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2012-09-14 22:50:34 +02:00
|
|
|
$y++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_add";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2012-09-14 22:50:34 +02:00
|
|
|
$y++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_edit";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2012-09-14 22:50:34 +02:00
|
|
|
$y++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_delete";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
2018-01-25 23:30:47 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_context";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2020-01-21 17:43:19 +01:00
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "call_flow_destinations";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$y++;
|
2012-09-14 22:50:34 +02:00
|
|
|
|
2019-07-30 09:39:55 +02:00
|
|
|
//cache details
|
|
|
|
|
$apps[$x]['cache']['key'] = "dialplan.\${call_flow_context}";
|
|
|
|
|
|
2012-09-14 22:50:34 +02:00
|
|
|
//schema details
|
2017-02-16 05:32:45 +01:00
|
|
|
$y=0;
|
|
|
|
|
$apps[$x]['db'][$y]['table']['name'] = "v_call_flows";
|
|
|
|
|
$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";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_domains";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "domain_uuid";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_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'] = "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)";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
2013-10-01 13:35:07 +02:00
|
|
|
$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";
|
|
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_name";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the name.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_extension";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the extension number.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_feature_code";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the feature code.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_context";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the context.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_status";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the status.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_pin_number";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the PIN number.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_label";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the label.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
2016-06-11 17:04:42 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_sound";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the sound.";
|
2016-06-11 17:04:42 +02:00
|
|
|
$z++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_app";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the application.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_data";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the application data.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
2016-06-11 17:04:42 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "call_flow_alternate_label";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "call_flow_anti_label";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the alternate label.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
2016-06-11 17:04:42 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_alternate_sound";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the alternate sound.";
|
2016-06-11 17:04:42 +02:00
|
|
|
$z++;
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "call_flow_alternate_app";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "call_flow_anti_app";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the alternate application.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
2016-06-11 17:04:42 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "call_flow_alternate_data";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "call_flow_anti_data";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the alernate application data.";
|
2013-10-01 13:35:07 +02:00
|
|
|
$z++;
|
2020-04-03 01:23:25 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_enabled";
|
|
|
|
|
$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'] = "Select whether to enable or disable the call flow";
|
|
|
|
|
$z++;
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "call_flow_description";
|
|
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
2020-01-08 21:08:04 +01:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
|
2017-06-03 20:34:19 +02:00
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description.";
|
2016-06-11 17:04:42 +02:00
|
|
|
|
2018-01-25 23:30:47 +01:00
|
|
|
?>
|