Files
homelabdspbx/core/databases/app_config.php
T
2023-12-04 13:27:20 -07:00

130 lines
7.3 KiB
PHP

<?php
//application details
$apps[$x]['name'] = "Databases";
$apps[$x]['uuid'] = "8d229b6d-1383-fcec-74c6-4ce1682479e2";
$apps[$x]['category'] = "Core";
$apps[$x]['subcategory'] = "";
$apps[$x]['version'] = "1.0";
$apps[$x]['license'] = "Mozilla Public License 1.1";
$apps[$x]['url'] = "http://www.fusionpbx.com";
$apps[$x]['description']['en-us'] = "Stored database connection information.";
$apps[$x]['description']['en-gb'] = "Stored database connection information.";
$apps[$x]['description']['ar-eg'] = "معلومات اتصال قاعدة البيانات المخزنة.";
$apps[$x]['description']['de-at'] = "Gespeicherte Informationen zu Datenbank-Verbindungen.";
$apps[$x]['description']['de-ch'] = "Gespeicherte Datenbankverbindungsinformationen.";
$apps[$x]['description']['de-de'] = "Gespeicherte Informationen zu Datenbank-Verbindungen.";
$apps[$x]['description']['es-cl'] = "Información de conexiones a bases de datos";
$apps[$x]['description']['es-mx'] = "Información de conexión de base de datos almacenada.";
$apps[$x]['description']['fr-ca'] = "Informations de connexion à la base de données stockées.";
$apps[$x]['description']['fr-fr'] = "Information de connexions au BDD";
$apps[$x]['description']['he-il'] = "מידע חיבור למסד נתונים מאוחסן.";
$apps[$x]['description']['it-it'] = "Informazioni di connessione al database memorizzate.";
$apps[$x]['description']['nl-nl'] = "Opgeslagen databaseverbindingsinformatie.";
$apps[$x]['description']['pl-pl'] = "Przechowywane informacje o połączeniu z bazą danych.";
$apps[$x]['description']['pt-br'] = "Banco de Dados";
$apps[$x]['description']['pt-pt'] = "Armazena informações de conexão com a base de dados.";
$apps[$x]['description']['ro-ro'] = "Informații stocate de conexiune la baza de date.";
$apps[$x]['description']['ru-ru'] = "Информация о подключении к базам данных";
$apps[$x]['description']['sv-se'] = "Lagrad databasanslutningsinformation.";
$apps[$x]['description']['uk-ua'] = "Збережена інформація про підключення до бази даних.";
//permission details
$y=0;
$apps[$x]['permissions'][$y]['name'] = "database_view";
$apps[$x]['permissions'][$y]['menu']['uuid'] = "ebbd754d-ca74-d5b1-a77e-9206ba3ecc3f";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "database_add";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "database_edit";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "database_delete";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
//schema details
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_databases";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_uuid";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "database_connection_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";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_driver";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_type";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the database driver.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_type";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_type";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the database type.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_host";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_host";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the host name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_port";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_port";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the port number.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_name";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_name";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the database name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_username";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_username";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the database username.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_password";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_password";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the database password.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_path";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_path";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the database file path.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "database_description";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "db_description";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description.";
$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'] = "";
?>