This commit is contained in:
Joey Kimsey
2024-08-07 19:21:38 -04:00
parent 8e2b161885
commit 41d2a45ad6
17 changed files with 1912 additions and 85 deletions

10
config/constants.php Normal file
View File

@ -0,0 +1,10 @@
<?php
// Directories
if ( !defined( 'HOUDINI_ROOT_DIRECTORY' ) ) {
define( 'HOUDINI_ROOT_DIRECTORY', dirname( __DIR__ ) . DIRECTORY_SEPARATOR );
}
if ( ! defined('HOUDINI_CONFIG_DIRECTORY' ) ) {
define('HOUDINI_CONFIG_DIRECTORY', HOUDINI_ROOT_DIRECTORY . 'config' . DIRECTORY_SEPARATOR);
}
// # Tell the app all constants have been loaded.
define( 'HOUDINI_CONSTANTS_LOADED', true );