2015-01-23 13:09:30 +00:00
|
|
|
<?php
|
|
|
|
|
2016-07-22 20:00:27 +00:00
|
|
|
require_once (__DIR__.'/../php-vn-lib/configure.php');
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
set_include_path
|
|
|
|
(
|
|
|
|
get_include_path ()
|
2016-05-02 13:05:49 +00:00
|
|
|
.PATH_SEPARATOR.__DIR__
|
2015-01-23 13:09:30 +00:00
|
|
|
);
|
|
|
|
|
2016-08-22 10:41:05 +00:00
|
|
|
const _DEBUG_MODE = TRUE;
|
2016-05-02 13:05:49 +00:00
|
|
|
const _CONFIG_DIR = '/home/juan/.config';
|
2015-01-23 13:09:30 +00:00
|
|
|
const _LOG_DIR = '/tmp';
|
2016-07-22 20:00:27 +00:00
|
|
|
const _DATA_DIR = '/tmp';
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
?>
|