app_config.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "Notifications";
  4. $apps[$x]['uuid'] = "e746fbcb-f67f-4e0e-ab64-c414c01fac11";
  5. $apps[$x]['category'] = "Switch";
  6. $apps[$x]['subcategory'] = "";
  7. $apps[$x]['version'] = "1.0";
  8. $apps[$x]['url'] = "http://www.fusionpbx.com";
  9. $apps[$x]['description']['en-us'] = "Configure notification preferences.";
  10. $apps[$x]['description']['en-gb'] = "Configure notification preferences.";
  11. $apps[$x]['description']['ar-eg'] = "";
  12. $apps[$x]['description']['de-at'] = "Verwalte Benachrichtigunggseinstellungen.";
  13. $apps[$x]['description']['de-ch'] = "";
  14. $apps[$x]['description']['de-de'] = "Verwalte Benachrichtigunggseinstellungen.";
  15. $apps[$x]['description']['el-gr'] = "Ρυθμίστε τις επιλογές γνωστοποιήσεων.";
  16. $apps[$x]['description']['es-cl'] = "Configure las preferencias de notificaciones.";
  17. $apps[$x]['description']['es-mx'] = "";
  18. $apps[$x]['description']['fr-ca'] = "Configurez les notifications.";
  19. $apps[$x]['description']['fr-fr'] = "Configurez les notifications.";
  20. $apps[$x]['description']['he-il'] = "";
  21. $apps[$x]['description']['it-it'] = "";
  22. $apps[$x]['description']['ka-ge'] = "გაფრთხილების პარამეტრების კონფიგურაცია.";
  23. $apps[$x]['description']['nl-nl'] = "";
  24. $apps[$x]['description']['pl-pl'] = "";
  25. $apps[$x]['description']['pt-br'] = "";
  26. $apps[$x]['description']['pt-pt'] = "";
  27. $apps[$x]['description']['ro-ro'] = "";
  28. $apps[$x]['description']['ru-ru'] = "Настройка параметров уведомлений";
  29. $apps[$x]['description']['sv-se'] = "Konfigurera notifieringsinställningar.";
  30. $apps[$x]['description']['uk-ua'] = "";
  31. //schema details
  32. $y=0;
  33. $apps[$x]['db'][$y]['table']['name'] = "v_notifications";
  34. $apps[$x]['db'][$y]['table']['parent'] = "";
  35. $z=0;
  36. $apps[$x]['db'][$y]['fields'][$z]['name'] = "notification_uuid";
  37. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  38. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  39. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  40. $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
  41. $z++;
  42. $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "project_notifications";
  43. $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
  44. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  45. $z++;
  46. $apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_date";
  47. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
  48. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
  49. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
  50. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  51. $z++;
  52. $apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_user";
  53. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  54. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  55. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  56. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  57. $z++;
  58. $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_date";
  59. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
  60. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
  61. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
  62. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  63. $z++;
  64. $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_user";
  65. $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
  66. $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
  67. $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
  68. $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
  69. ?>