14 lines
373 B
PHP
14 lines
373 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*/
|
||
|
|
if (!defined('_PS_ADMIN_DIR_')) {
|
||
|
|
define('_PS_ADMIN_DIR_', __DIR__);
|
||
|
|
}
|
||
|
|
if (!defined('PS_ADMIN_DIR')) {
|
||
|
|
define('PS_ADMIN_DIR', _PS_ADMIN_DIR_);
|
||
|
|
}
|
||
|
|
|
||
|
|
require_once dirname(__FILE__).'/../config/config.inc.php';
|