app_config.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Voicemail Messages";
  4. $apps[$x]['uuid'] = '789ea83b-4063-5076-55ba-2f7d63afa86b';
  5. $apps[$x]['category'] = 'Switch';
  6. $apps[$x]['subcategory'] = '';
  7. $apps[$x]['version'] = '';
  8. $apps[$x]['license'] = 'Mozilla Public License 1.1';
  9. $apps[$x]['url'] = 'http://www.fusionpbx.com';
  10. $apps[$x]['description']['en-us'] = 'Voicemails can be listed, played, downloaded and deleted.';
  11. $apps[$x]['description']['es-mx'] = '';
  12. $apps[$x]['description']['de-de'] = '';
  13. $apps[$x]['description']['de-ch'] = '';
  14. $apps[$x]['description']['de-at'] = '';
  15. $apps[$x]['description']['fr-fr'] = '';
  16. $apps[$x]['description']['fr-ca'] = '';
  17. $apps[$x]['description']['fr-ch'] = '';
  18. $apps[$x]['description']['pt-pt'] = 'Mensagens de voz podem ser listadas, jogado, baixado e excluído.';
  19. $apps[$x]['description']['pt-br'] = '';
  20. //permission details
  21. $apps[$x]['permissions'][0]['name'] = 'voicemail_view';
  22. $apps[$x]['permissions'][0]['groups'][] = 'user';
  23. $apps[$x]['permissions'][0]['groups'][] = 'admin';
  24. $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
  25. $apps[$x]['permissions'][1]['name'] = 'voicemail_edit';
  26. $apps[$x]['permissions'][1]['groups'][] = 'user';
  27. $apps[$x]['permissions'][1]['groups'][] = 'admin';
  28. $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
  29. $apps[$x]['permissions'][2]['name'] = 'voicemail_delete';
  30. $apps[$x]['permissions'][2]['groups'][] = 'user';
  31. $apps[$x]['permissions'][2]['groups'][] = 'admin';
  32. $apps[$x]['permissions'][2]['groups'][] = 'superadmin';
  33. ?>