app_config.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Server Errors";
  4. $apps[$x]['uuid'] = "0e08d30e-e4ec-4efd-9f4b-fbd541642c9c";
  5. $apps[$x]['category'] = "Core";;
  6. $apps[$x]['subcategory'] = "";
  7. $apps[$x]['version'] = "1.0";
  8. $apps[$x]['license'] = "Mozilla Public License 1.1";
  9. $apps[$x]['url'] = "http://www.fusionpbx.com";
  10. $apps[$x]['description']['en-us'] = "Display web server errors.";
  11. $apps[$x]['description']['en-gb'] = "Display web server errors.";
  12. $apps[$x]['description']['ar-eg'] = "";
  13. $apps[$x]['description']['de-at'] = "";
  14. $apps[$x]['description']['de-ch'] = "";
  15. $apps[$x]['description']['de-de'] = "";
  16. $apps[$x]['description']['es-cl'] = "";
  17. $apps[$x]['description']['es-mx'] = "";
  18. $apps[$x]['description']['fr-ca'] = "";
  19. $apps[$x]['description']['fr-fr'] = "";
  20. $apps[$x]['description']['he-il'] = "";
  21. $apps[$x]['description']['it-it'] = "";
  22. $apps[$x]['description']['nl-nl'] = "Toon web server fouten.";
  23. $apps[$x]['description']['pl-pl'] = "";
  24. $apps[$x]['description']['pt-br'] = "";
  25. $apps[$x]['description']['pt-pt'] = "";
  26. $apps[$x]['description']['ro-ro'] = "";
  27. $apps[$x]['description']['ru-ru'] = "";
  28. $apps[$x]['description']['sv-se'] = "";
  29. $apps[$x]['description']['uk-ua'] = "";
  30. //permission details
  31. $y=0;
  32. $apps[$x]['permissions'][$y]['name'] = "errors_view";
  33. $apps[$x]['permissions'][$y]['menu']['uuid'] = "0b4702e7-a254-4fda-84ae-1f28350fc8f5";
  34. $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
  35. $y++;
  36. //default settings
  37. $y=0;
  38. $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "687893ef-f082-4a5d-8511-2b924658ddb2";
  39. $apps[$x]['default_settings'][$y]['default_setting_category'] = "server";
  40. $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "error";
  41. $apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
  42. $apps[$x]['default_settings'][$y]['default_setting_value'] = "/var/log/nginx/error.log";
  43. $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
  44. $apps[$x]['default_settings'][$y]['default_setting_description'] = "Path to web server error log file.";
  45. $y++;
  46. ?>