config.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package SureCartAppCore |
| 4 | * @author SureCart <support@surecart.com> |
| 5 | * @copyright SureCart |
| 6 | * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 |
| 7 | * @link https://surecart.com |
| 8 | */ |
| 9 | |
| 10 | /** |
| 11 | * Absolute path to app core's directory |
| 12 | */ |
| 13 | if ( ! defined( 'SURECART_APP_CORE_DIR' ) ) { |
| 14 | define( 'SURECART_APP_CORE_DIR', __DIR__ ); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Absolute path to app core's src directory |
| 19 | */ |
| 20 | if ( ! defined( 'SURECART_APP_CORE_SRC_DIR' ) ) { |
| 21 | define( 'SURECART_APP_CORE_SRC_DIR', SURECART_APP_CORE_DIR . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR ); |
| 22 | } |
| 23 |