2012-06-04 14:58:40 +00:00
|
|
|
<?php
|
2014-12-26 03:27:54 +00:00
|
|
|
|
2012-06-04 14:58:40 +00:00
|
|
|
//application details
|
|
|
|
|
$apps[$x]['name'] = "Click to Call";
|
2013-10-01 11:35:07 +00:00
|
|
|
$apps[$x]['uuid'] = "eb221c9b-cb13-5542-9140-dff924816dc4";
|
|
|
|
|
$apps[$x]['category'] = "Switch";
|
|
|
|
|
$apps[$x]['subcategory'] = "";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['version'] = "1.0";
|
2013-10-01 11:35:07 +00:00
|
|
|
$apps[$x]['license'] = "Mozilla Public License 1.1";
|
|
|
|
|
$apps[$x]['url'] = "http://www.fusionpbx.com";
|
2013-09-30 16:21:08 +00:00
|
|
|
$apps[$x]['description']['en-us'] = "Originate calls with a URL.";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['description']['ar-eg'] = "";
|
2017-04-27 07:41:55 +02:00
|
|
|
$apps[$x]['description']['de-at'] = "Anrufe über eine URL erzeugen.";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
|
|
|
|
$apps[$x]['description']['de-de'] = "Anrufe über eine URL erzeugen.";
|
|
|
|
|
$apps[$x]['description']['es-cl'] = "Genera llamadas con un URL.";
|
|
|
|
|
$apps[$x]['description']['es-mx'] = "";
|
2013-09-30 16:21:08 +00:00
|
|
|
$apps[$x]['description']['fr-ca'] = "Appeller avec d'URL";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['description']['fr-fr'] = "Appeler à partir d'une URL";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
|
|
|
|
$apps[$x]['description']['nl-nl'] = "";
|
|
|
|
|
$apps[$x]['description']['pl-pl'] = "";
|
2016-08-25 14:03:51 -03:00
|
|
|
$apps[$x]['description']['pt-br'] = "Gera chamadas a partir de um URL";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['description']['pt-pt'] = "Originar chamadas com um URL.";
|
|
|
|
|
$apps[$x]['description']['ro-ro'] = "";
|
2017-04-25 03:37:00 +05:00
|
|
|
$apps[$x]['description']['ru-ru'] = "Создание исходящих вызовов с помощью вызова URL";
|
2017-06-03 16:00:20 +01:00
|
|
|
$apps[$x]['description']['sv-se'] = "";
|
|
|
|
|
$apps[$x]['description']['uk-ua'] = "";
|
2012-06-04 14:58:40 +00:00
|
|
|
|
|
|
|
|
//permission details
|
2017-02-15 21:42:03 -07:00
|
|
|
$y=0;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "click_to_call_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "f862556f-9ddd-2697-fdf4-bed08ec63aa5";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "user";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "click_to_call_call";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "user";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2012-06-04 14:58:40 +00:00
|
|
|
|
2017-06-03 16:00:20 +01:00
|
|
|
?>
|