Enhance - app_config.php cleanup for apps (#2633)

make spacing and layout consistent
add all missing language tags
fill missing en-us descriptions
convert to $x$y$z usage for array filling
add a default version number
this is a by hand update
This commit is contained in:
Mafoo
2017-06-03 16:00:20 +01:00
committed by FusionPBX
parent 25a761e7c3
commit b98f9cb120
57 changed files with 2854 additions and 2437 deletions

View File

@@ -1,11 +1,11 @@
<?php
//application details
//application details
$apps[$x]['name'] = "Traffic Graph";
$apps[$x]['uuid'] = "99932b6e-6560-a472-25dd-22e196262187";
$apps[$x]['category'] = "System";
$apps[$x]['subcategory'] = "";
$apps[$x]['version'] = "";
$apps[$x]['version'] = "1.0";
$apps[$x]['license'] = "Mozilla Public License 1.1";
$apps[$x]['url'] = "http://www.fusionpbx.com";
$apps[$x]['description']['en-us'] = "Uses SVG to show the network traffic.";
@@ -21,10 +21,10 @@
$apps[$x]['description']['pt-br'] = "";
$apps[$x]['description']['ru-ru'] = "Использование SVG для отображения сетевого трафика.";
//permission details
//permission details
$y=0;
$apps[$x]['permissions'][$y]['name'] = "traffic_graph_view";
$apps[$x]['permissions'][$y]['menu']['uuid'] = "05ac3828-dc2b-c0e2-282c-79920f5349e0";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
?>
?>