mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-24 01:18:27 +00:00
37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
<?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'] = 'Voicemails can be listed, played, downloaded and deleted. ';
|
|
|
|
//menu details
|
|
$apps[$x]['menu'][0]['title']['en'] = 'Voicemail';
|
|
$apps[$x]['menu'][0]['uuid'] = 'e10d5672-0f82-6e5d-5022-a02ac8545198';
|
|
$apps[$x]['menu'][0]['parent_uuid'] = 'fd29e39c-c936-f5fc-8e2b-611681b266b5';
|
|
$apps[$x]['menu'][0]['category'] = 'internal';
|
|
$apps[$x]['menu'][0]['path'] = '/app/voicemail_msgs/v_voicemail_msgs.php';
|
|
$apps[$x]['menu'][0]['groups'][] = 'user';
|
|
$apps[$x]['menu'][0]['groups'][] = 'admin';
|
|
$apps[$x]['menu'][0]['groups'][] = 'superadmin';
|
|
|
|
//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';
|
|
?>
|