mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadida la libreria datatables editor a third party
This commit is contained in:
30
ci4/app/ThirdParty/DatatablesEditor/config.php
vendored
Normal file
30
ci4/app/ThirdParty/DatatablesEditor/config.php
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<?php if (!defined('DATATABLES')) exit(); // Ensure being used in DataTables .env.
|
||||
|
||||
// Enable error reporting for debugging (remove for production)
|
||||
error_reporting(E_ALL);
|
||||
ini_set('display_errors', '1');
|
||||
|
||||
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Database user / pass
|
||||
*/
|
||||
$sql_details = array(
|
||||
"type" => "Mysql", // Database type: "Mysql", "Postgres", "Sqlserver", "Sqlite" or "Oracle"
|
||||
"user" => "sk-misc", // Database user name
|
||||
"pass" => "Itd27y^86", // Database password
|
||||
"host" => "localhost", // Database host
|
||||
"port" => "", // Database connection port (can be left empty for default)
|
||||
"db" => "sk-misc", // Database name
|
||||
"dsn" => "", // PHP DSN extra information. Set as `charset=utf8mb4` if you are using MySQL
|
||||
"pdoAttr" => array() // PHP PDO attributes array. See the PHP documentation for all options
|
||||
);
|
||||
|
||||
|
||||
// This is included for the development and deploy environment used on the DataTables
|
||||
// server. You can delete this block - it just includes my own user/pass without making
|
||||
// them public!
|
||||
if ( is_file($_SERVER['DOCUMENT_ROOT']."/datatables/pdo.php") ) {
|
||||
include( $_SERVER['DOCUMENT_ROOT']."/datatables/pdo.php" );
|
||||
}
|
||||
// /End development include
|
||||
|
||||
Reference in New Issue
Block a user