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,17 +1,17 @@
<?php
//application details
//application details
$apps[$x]['name'] = "Tones";
$apps[$x]['uuid'] = "38ab9f01-bcd2-4726-a9ff-9af8ed9e396a";
$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'] = "Manage Tones";
$apps[$x]['description']['ru-ru'] = "Менеджер Тонов";
//destination details
//destination details
$y=0;
$apps[$x]['destinations'][$y]['type'] = "sql";
$apps[$x]['destinations'][$y]['label'] = "tones";
@@ -27,4 +27,4 @@
$apps[$x]['destinations'][$y]['select_value']['ivr'] = "play tone_stream://\${destination}";
$apps[$x]['destinations'][$y]['select_label'] = "\${name}";
?>
?>