v_config.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. //application details
  4. $apps[$x]['name'] = "Features";
  5. $apps[$x]['uuid'] = '';
  6. $apps[$x]['category'] = '';
  7. $apps[$x]['subcategory'] = '';
  8. $apps[$x]['version'] = '';
  9. $apps[$x]['permissions'][] = '_delete';
  10. $apps[$x]['url'] = 'http://www.fusionpbx.com';
  11. $apps[$x]['author_url'] = 'http://www.fusionpbx.com';
  12. $apps[$x]['description']['en'] = 'Will be depracted by the App Manager.';
  13. //menu details
  14. $apps[$x]['menu'][0]['title']['en'] = '';
  15. $apps[$x]['menu'][0]['uuid'] = '';
  16. $apps[$x]['menu'][0]['parent_uuid'] = '';
  17. $apps[$x]['menu'][0]['category'] = 'internal';
  18. $apps[$x]['menu'][0]['path'] = '/app/zzz/zzz.php';
  19. $apps[$x]['menu'][0]['groups'][] = 'admin';
  20. $apps[$x]['menu'][0]['groups'][] = 'superadmin';
  21. //permission details
  22. $apps[$x]['permissions'][0]['name'] = 'zzz';
  23. $apps[$x]['permissions'][0]['groups'][] = 'admin';
  24. $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
  25. $apps[$x]['permissions'][1]['name'] = 'zzz';
  26. $apps[$x]['permissions'][1]['groups'][] = 'admin';
  27. $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
  28. $apps[$x]['permissions'][2]['name'] = 'zzz';
  29. $apps[$x]['permissions'][2]['groups'][] = 'admin';
  30. $apps[$x]['permissions'][2]['groups'][] = 'superadmin';
  31. */
  32. ?>