app_config.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "BDR Management";
  4. $apps[$x]['uuid'] = "399cd584-e2eb-4993-afa9-4292593600a3";
  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-us'] = "A tool to manage BDR.";
  11. $apps[$x]['description']['es-cl'] = "";
  12. $apps[$x]['description']['de-de'] = "";
  13. $apps[$x]['description']['de-ch'] = "";
  14. $apps[$x]['description']['de-at'] = "";
  15. $apps[$x]['description']['fr-fr'] = "";
  16. $apps[$x]['description']['fr-ca'] = "";
  17. $apps[$x]['description']['fr-ch'] = "";
  18. $apps[$x]['description']['pt-pt'] = "";
  19. $apps[$x]['description']['pt-br'] = "";
  20. //permission details
  21. $y = 0;
  22. $apps[$x]['permissions'][$y]['name'] = "bdr_view";
  23. $apps[$x]['permissions'][$y]['menu']['uuid'] = "7ed61deb-14dd-49f6-940d-6cf2023f8481";
  24. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  25. $y++;
  26. $apps[$x]['permissions'][$y]['name'] = "bdr_delete";
  27. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  28. $y++;
  29. ?>