app_config.php 917 B

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