| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package WPEmergeAppCore |
| 4 |
* @author Atanas Angelov <hi@atanas.dev> |
| 5 |
* @copyright 2017-2020 Atanas Angelov |
| 6 |
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 |
| 7 |
* @link https://wpemerge.com/ |
| 8 |
*/ |
| 9 |
|
| 10 |
/** |
| 11 |
* Absolute path to app core's directory |
| 12 |
*/ |
| 13 |
if ( ! defined( 'WPEMERGE_APP_CORE_DIR' ) ) { |
| 14 |
define( 'WPEMERGE_APP_CORE_DIR', __DIR__ ); |
| 15 |
} |
| 16 |
|
| 17 |
/** |
| 18 |
* Absolute path to app core's src directory |
| 19 |
*/ |
| 20 |
if ( ! defined( 'WPEMERGE_APP_CORE_SRC_DIR' ) ) { |
| 21 |
define( 'WPEMERGE_APP_CORE_SRC_DIR', WPEMERGE_APP_CORE_DIR . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR ); |
| 22 |
} |
| 23 |
|