123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- //application details
- $apps[$x]['name'] = "Voicemail Messages";
- $apps[$x]['uuid'] = '789ea83b-4063-5076-55ba-2f7d63afa86b';
- $apps[$x]['category'] = 'Switch';
- $apps[$x]['subcategory'] = '';
- $apps[$x]['version'] = '';
- $apps[$x]['license'] = 'Mozilla Public License 1.1';
- $apps[$x]['url'] = 'http://www.fusionpbx.com';
- $apps[$x]['description']['en-us'] = 'Voicemails can be listed, played, downloaded and deleted.';
- $apps[$x]['description']['es-mx'] = '';
- $apps[$x]['description']['de-de'] = '';
- $apps[$x]['description']['de-ch'] = '';
- $apps[$x]['description']['de-at'] = '';
- $apps[$x]['description']['fr-fr'] = '';
- $apps[$x]['description']['fr-ca'] = '';
- $apps[$x]['description']['fr-ch'] = '';
- $apps[$x]['description']['pt-pt'] = 'Mensagens de voz podem ser listadas, jogado, baixado e excluído.';
- $apps[$x]['description']['pt-br'] = '';
- //permission details
- $apps[$x]['permissions'][0]['name'] = 'voicemail_view';
- $apps[$x]['permissions'][0]['groups'][] = 'user';
- $apps[$x]['permissions'][0]['groups'][] = 'admin';
- $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
- $apps[$x]['permissions'][1]['name'] = 'voicemail_edit';
- $apps[$x]['permissions'][1]['groups'][] = 'user';
- $apps[$x]['permissions'][1]['groups'][] = 'admin';
- $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
- $apps[$x]['permissions'][2]['name'] = 'voicemail_delete';
- $apps[$x]['permissions'][2]['groups'][] = 'user';
- $apps[$x]['permissions'][2]['groups'][] = 'admin';
- $apps[$x]['permissions'][2]['groups'][] = 'superadmin';
- ?>
|