mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2024-11-30 12:36:03 +00:00
14 lines
373 B
PHP
14 lines
373 B
PHP
|
<?php
|
||
|
|
||
|
define('FILTER_PROPERTIES_FILE', 'filterProperties.txt');
|
||
|
|
||
|
$config = unserialize(file_get_contents("d2im.conf"));
|
||
|
|
||
|
define('DB_FILE', $config['modname'].".db");
|
||
|
define('TXT_PATH', $config['path']);
|
||
|
|
||
|
include "./_pdo.php";
|
||
|
require_once "./src/D2Functions.php";
|
||
|
require_once "./src/D2Database.php";
|
||
|
require_once './src/D2Files.php';
|
||
|
require_once './src/D2TxtParser.php';
|