app_config.php 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Voicemail Status";
  4. $apps[$x]['uuid'] = '9ecd085e-8c0e-92f6-e727-e90f6bb57773';
  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'] = 'Shows which extensions have voicemails and how many.';
  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'] = 'Mostra quais extensões têm mensagens de voz e quantas.';
  19. $apps[$x]['description']['pt-br'] = '';
  20. //permission details
  21. $apps[$x]['permissions'][0]['name'] = 'voicemail_status_view';
  22. $apps[$x]['permissions'][0]['groups'][] = 'admin';
  23. $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
  24. $apps[$x]['permissions'][1]['name'] = 'voicemail_status_delete';
  25. $apps[$x]['permissions'][1]['groups'][] = 'admin';
  26. $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
  27. ?>