1234567891011121314151617181920212223242526 |
- <?php
- //application details
- $apps[$x]['name'] = "SIP Profiles";
- $apps[$x]['uuid'] = '5414b2d9-fd7c-f4fa-3c31-eecc387bd1e4';
- $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'] = 'Use this to configure your SIP profiles.';
- //permission details
- $apps[$x]['permissions'][0]['name'] = 'sip_profiles_view';
- $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
- $apps[$x]['permissions'][1]['name'] = 'sip_profiles_add';
- $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
- $apps[$x]['permissions'][2]['name'] = 'sip_profiles_edit';
- $apps[$x]['permissions'][2]['groups'][] = 'superadmin';
- $apps[$x]['permissions'][3]['name'] = 'sip_profile_delete';
- $apps[$x]['permissions'][3]['groups'][] = 'superadmin';
- ?>
|