PHP Classes

File: config/database.php

Recommend this page to a friend!
  Classes of Josantonius   PHP HTTP Request Logger   config/database.php   Download  
File: config/database.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP HTTP Request Logger
Store details about the HTTP request in a database
Author: By
Last change:
Date: 6 years ago
Size: 662 bytes
 

Contents

Class file image Download
<?php
/**
 * Save HTTP request information to the database.
 *
 * @author Josantonius <hello@josantonius.com>
 * @copyright 2017 - 2018 (c) Josantonius - HTTP Request Logger
 * @license https://opensource.org/licenses/MIT - The MIT License (MIT)
 * @link https://github.com/eliasis-framework/http-request-logger.git
 * @since 1.0.0
 */
use Eliasis\Framework\App;

$pluginConfig = App::getOption('plugin', 'http-request-logger');

return [
   
'db' => [
       
'id' => $pluginConfig['db-id'],
       
'charset' => $pluginConfig['db-charset'],
       
'prefix' => $pluginConfig['db-prefix'],
       
'engine' => $pluginConfig['db-engine'],
    ]
];