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 92398b7f32
commit f90e080ef4
57 changed files with 2854 additions and 2437 deletions

View File

@@ -1,11 +1,11 @@
<?php
//application details
//application details
$apps[$x]['name'] = "Variables";
$apps[$x]['uuid'] = "54e08402-c1b8-0a9d-a30a-f569fc174dd8";
$apps[$x]['category'] = "Switch";;
$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'] = "Define variables that are used by the switch, provisioning, and more.";
@@ -21,7 +21,7 @@
$apps[$x]['description']['pt-br'] = "";
$apps[$x]['description']['ru-ru'] = "Определение переменной делает возможным управление FreeSwitch, его инициализации, и многое другое.";
//permission details
//permission details
$y=0;
$apps[$x]['permissions'][$y]['name'] = "var_view";
$apps[$x]['permissions'][$y]['menu']['uuid'] = "7a4e9ec5-24b9-7200-89b8-d70bf8afdd8f";
@@ -36,7 +36,7 @@
$apps[$x]['permissions'][$y]['name'] = "var_delete";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
//schema details
//schema details
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_vars";
$apps[$x]['db'][$y]['table']['parent'] = "";
@@ -91,4 +91,4 @@
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
?>
?>