2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
2017-02-16 06:44:38 +01:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//application details
|
|
|
|
|
$apps[$x]['name'] = "Log Viewer";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['uuid'] = "159a2724-77e1-2782-9366-db08b3750e06";
|
|
|
|
|
$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'] = "Display the switch logs.";
|
2020-03-20 21:47:13 +01:00
|
|
|
$apps[$x]['description']['en-gb'] = "Display the switch logs.";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['ar-eg'] = "";
|
|
|
|
|
$apps[$x]['description']['de-at'] = "Zeigt die Switch-Logs an.";
|
|
|
|
|
$apps[$x]['description']['de-ch'] = "";
|
|
|
|
|
$apps[$x]['description']['de-de'] = "Zeigt die Switch-Logs an.";
|
2014-02-13 21:15:59 +01:00
|
|
|
$apps[$x]['description']['es-cl'] = "Muestra los registros del switch";
|
2013-10-01 13:35:07 +02:00
|
|
|
$apps[$x]['description']['es-mx'] = "";
|
|
|
|
|
$apps[$x]['description']['fr-ca'] = "";
|
2017-06-03 17:00:20 +02:00
|
|
|
$apps[$x]['description']['fr-fr'] = "Logs du switch.";
|
|
|
|
|
$apps[$x]['description']['he-il'] = "";
|
|
|
|
|
$apps[$x]['description']['it-it'] = "";
|
2019-11-23 01:37:36 +01:00
|
|
|
$apps[$x]['description']['nl-nl'] = "Centale log tonen.";
|
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'] = "Exibir os logs de switch.";
|
|
|
|
|
$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
|
|
|
|
|
|
|
|
//permission details
|
2017-02-16 06:44:38 +01:00
|
|
|
$y=0;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "log_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "781ebbec-a55a-9d60-f7bb-f54ab2ee4e7e";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "log_download";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
|
|
|
|
$y++;
|
|
|
|
|
$apps[$x]['permissions'][$y]['name'] = "log_path_view";
|
|
|
|
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
2014-12-26 04:27:54 +01:00
|
|
|
|
2020-12-21 19:02:36 +01:00
|
|
|
?>
|