Files
houdini/config/constants.php
Joey Kimsey 61589b35ff Add APP_NAME constant
Improved issue display
Add component::prepend
Add switches to form html
Updated form html to Bootstrap 5.
Updated navigation html to Bootstrap 5.
2025-01-21 20:46:49 -05:00

15 lines
519 B
PHP

<?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 );
}
if (!defined('APP_NAME')) {
define('APP_NAME', 'Houdini Site');
}
// # Tell the app all constants have been loaded.
if ( ! defined('HOUDINI_CONSTANTS_LOADED' ) ) {
define( 'HOUDINI_CONSTANTS_LOADED', true );
}