app_config.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Software";
  4. $apps[$x]['uuid'] = "4d9dcca5-6407-41f6-b26d-f7793220cd04";
  5. $apps[$x]['category'] = "Core";
  6. $apps[$x]['subcategory'] = "";
  7. $apps[$x]['version'] = "1.0";
  8. $apps[$x]['url'] = "http://www.fusionpbx.com";
  9. $apps[$x]['description']['en-us'] = "";
  10. $apps[$x]['description']['ar-eg'] = "";
  11. $apps[$x]['description']['de-at'] = "";
  12. $apps[$x]['description']['de-ch'] = "";
  13. $apps[$x]['description']['de-de'] = "";
  14. $apps[$x]['description']['es-cl'] = "";
  15. $apps[$x]['description']['es-mx'] = "";
  16. $apps[$x]['description']['fr-ca'] = "";
  17. $apps[$x]['description']['fr-fr'] = "";
  18. $apps[$x]['description']['he-il'] = "";
  19. $apps[$x]['description']['it-it'] = "";
  20. $apps[$x]['description']['nl-nl'] = "";
  21. $apps[$x]['description']['pl-pl'] = "";
  22. $apps[$x]['description']['pt-br'] = "";
  23. $apps[$x]['description']['pt-pt'] = "";
  24. $apps[$x]['description']['ro-ro'] = "";
  25. $apps[$x]['description']['ru-ru'] = "";
  26. $apps[$x]['description']['sv-se'] = "";
  27. $apps[$x]['description']['uk-ua'] = "";
  28. //schema details
  29. $y=0;
  30. $apps[$x]['db'][$y]['table']['name'] = "v_software";
  31. $apps[$x]['db'][$y]['table']['parent'] = "";
  32. $z=0;
  33. $apps[$x]['db'][$y]['fields'][$z]['name'] = "id";
  34. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "serial";
  35. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "integer";
  36. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "INT NOT NULL AUTO_INCREMENT";
  37. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  38. $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true";
  39. $z++;
  40. $apps[$x]['db'][$y]['fields'][$z]['name'] = "software_uuid";
  41. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  42. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  43. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  44. $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
  45. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  46. $z++;
  47. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_name";
  48. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwarename";
  49. $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
  50. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  51. $z++;
  52. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_url";
  53. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwareurl";
  54. $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
  55. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  56. $z++;
  57. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_version";
  58. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwareversion";
  59. $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
  60. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  61. ?>