PHP Classes

File: config/dbadmin.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon DB Admin   config/dbadmin.php   Download  
File: config/dbadmin.php
Role: Auxiliary script
Content typex: text/plain
Description: Configuration script
Class: Jaxon DB Admin
Web application to manage SQL of databases
Author: By
Last change: Rename the middlewares.
Date: 15 days ago
Size: 1,170 bytes
 

Contents

Class file image Download
<?php

return [
   
'common' => [
       
'access' => [
           
'server' => true,
           
'system' => false,
        ],
    ],
   
'fallback' => [
    ],
   
'users' => [
    ],
   
'logging' => [
       
'options' => [
           
'library' => [
               
'enabled' => false,
            ],
           
'enduser' => [
               
'enabled' => false,
            ],
           
'history' => [
               
'enabled' => false,
               
'distinct' => true,
               
'limit' => 10,
            ],
           
'favorite' => [
               
'enabled' => false,
               
'limit' => 10,
            ],
        ],
       
'database' => [
           
// Same as the "servers" items, but "name" is the database name.
            // 'driver' => 'pgsql',
            // 'host' => "env(LOGGING_DB_HOST)",
            // 'port' => "env(LOGGING_DB_PORT)",
            // 'username' => "env(LOGGING_DB_USERNAME)",
            // 'password' => "env(LOGGING_DB_PASSWORD)",
            // 'name' => 'logging',
       
],
       
'allowed' => [
           
// The emails of users that are allowed to access the logging page.
       
],
    ],
];