123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- //application details
- $apps[$x]['name'] = "Notifications";
- $apps[$x]['uuid'] = "e746fbcb-f67f-4e0e-ab64-c414c01fac11";
- $apps[$x]['category'] = "Switch";
- $apps[$x]['subcategory'] = "";
- $apps[$x]['version'] = "1.0";
- $apps[$x]['url'] = "http://www.fusionpbx.com";
- $apps[$x]['description']['en-us'] = "Configure notification preferences.";
- $apps[$x]['description']['en-gb'] = "Configure notification preferences.";
- $apps[$x]['description']['ar-eg'] = "";
- $apps[$x]['description']['de-at'] = "Verwalte Benachrichtigunggseinstellungen.";
- $apps[$x]['description']['de-ch'] = "";
- $apps[$x]['description']['de-de'] = "Verwalte Benachrichtigunggseinstellungen.";
- $apps[$x]['description']['el-gr'] = "Ρυθμίστε τις επιλογές γνωστοποιήσεων.";
- $apps[$x]['description']['es-cl'] = "Configure las preferencias de notificaciones.";
- $apps[$x]['description']['es-mx'] = "";
- $apps[$x]['description']['fr-ca'] = "Configurez les notifications.";
- $apps[$x]['description']['fr-fr'] = "Configurez les notifications.";
- $apps[$x]['description']['he-il'] = "";
- $apps[$x]['description']['it-it'] = "";
- $apps[$x]['description']['ka-ge'] = "გაფრთხილების პარამეტრების კონფიგურაცია.";
- $apps[$x]['description']['nl-nl'] = "";
- $apps[$x]['description']['pl-pl'] = "";
- $apps[$x]['description']['pt-br'] = "";
- $apps[$x]['description']['pt-pt'] = "";
- $apps[$x]['description']['ro-ro'] = "";
- $apps[$x]['description']['ru-ru'] = "Настройка параметров уведомлений";
- $apps[$x]['description']['sv-se'] = "Konfigurera notifieringsinställningar.";
- $apps[$x]['description']['uk-ua'] = "";
- //schema details
- $y=0;
- $apps[$x]['db'][$y]['table']['name'] = "v_notifications";
- $apps[$x]['db'][$y]['table']['parent'] = "";
- $z=0;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = "notification_uuid";
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
- $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "project_notifications";
- $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_date";
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_user";
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_date";
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
- $z++;
- $apps[$x]['db'][$y]['fields'][$z]['name'] = "update_user";
- $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
- $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
- $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
- $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
- ?>
|