# depicter/1.2.0/modules/wpemerge-app-core/config.php

Depicter — Popup &amp; Slider Builder, version 1.2.0. 23 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.2.0/code/modules/wpemerge-app-core/config.php
- Raw: https://pluginprobe.com/plugins/depicter/1.2.0/raw/modules/wpemerge-app-core/config.php
- Modified: 2022-06-01T06:26:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/1.2.0/code/modules/wpemerge-app-core/config.php#L10-L20`.

```php
<?php
/**
 * @package   WPEmergeAppCore
 * @author    Atanas Angelov <hi@atanas.dev>
 * @copyright 2017-2020 Atanas Angelov
 * @license   https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
 * @link      https://wpemerge.com/
 */

/**
 * Absolute path to app core's directory
 */
if ( ! defined( 'WPEMERGE_APP_CORE_DIR' ) ) {
	define( 'WPEMERGE_APP_CORE_DIR', __DIR__ );
}

/**
 * Absolute path to app core's src directory
 */
if ( ! defined( 'WPEMERGE_APP_CORE_SRC_DIR' ) ) {
	define( 'WPEMERGE_APP_CORE_SRC_DIR', WPEMERGE_APP_CORE_DIR . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR );
}

```
