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 09:00:20 -06:00
committed by FusionPBX
parent 92398b7f32
commit f90e080ef4
57 changed files with 2854 additions and 2437 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
<?php
//application details
//application details
$apps[$x]['name'] = "Voicemail Greetings";
$apps[$x]['uuid'] = "e4b4fbee-9e4d-8e46-3810-91ba663db0c2";
$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'] = "Manager voicemail greetings for extensions.";
@@ -21,7 +21,7 @@
$apps[$x]['description']['pt-br'] = "";
$apps[$x]['description']['ru-ru'] = "Менеджер приветствий Голосовой почты для Внутренних Номеров.";
//permission details
//permission details
$apps[$x]['permissions'][$y]['name'] = "voicemail_greeting_view";
$apps[$x]['permissions'][$y]['groups'][] = "user";
$apps[$x]['permissions'][$y]['groups'][] = "admin";
@@ -57,7 +57,7 @@
$apps[$x]['permissions'][$y]['groups'][] = "admin";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
//schema details
//schema details
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_voicemail_greetings";
$apps[$x]['db'][$y]['table']['parent'] = "";
@@ -119,4 +119,4 @@
$apps[$x]['db'][$y]['fields'][$z]['description']['ru-ru'] = "К сообщению Голосовой Почты прикреплен файл в кодировке base64.";
$z++;
?>
?>