app_config.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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']['en-gb'] = "";
  11. $apps[$x]['description']['ar-eg'] = "";
  12. $apps[$x]['description']['de-at'] = "";
  13. $apps[$x]['description']['de-ch'] = "";
  14. $apps[$x]['description']['de-de'] = "";
  15. $apps[$x]['description']['es-cl'] = "";
  16. $apps[$x]['description']['es-mx'] = "";
  17. $apps[$x]['description']['fr-ca'] = "";
  18. $apps[$x]['description']['fr-fr'] = "";
  19. $apps[$x]['description']['he-il'] = "";
  20. $apps[$x]['description']['it-it'] = "";
  21. $apps[$x]['description']['ka-ge'] = "";
  22. $apps[$x]['description']['nl-nl'] = "";
  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. //schema details
  31. $y=0;
  32. $apps[$x]['db'][$y]['table']['name'] = "v_software";
  33. $apps[$x]['db'][$y]['table']['parent'] = "";
  34. $z=0;
  35. $apps[$x]['db'][$y]['fields'][$z]['name'] = "software_uuid";
  36. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  37. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  38. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  39. $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
  40. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  41. $z++;
  42. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_name";
  43. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwarename";
  44. $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
  45. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  46. $z++;
  47. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_url";
  48. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwareurl";
  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_version";
  53. $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwareversion";
  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'] = "insert_date";
  58. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
  59. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
  60. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
  61. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  62. $z++;
  63. $apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_user";
  64. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  65. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  66. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  67. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  68. $z++;
  69. $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_date";
  70. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
  71. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
  72. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
  73. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  74. $z++;
  75. $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_user";
  76. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  77. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  78. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  79. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  80. ?>