OwlCyberSecurity - MANAGER
Edit File: edura-constants.php
<?php /** * @Packge : Edura * @Version : 1.0 * @Author : Themeholy * @Author URI : https://www.themeholy.com/ * */ // Block direct access if ( !defined( 'ABSPATH' ) ) { exit; } /** * * Define constant * */ // Base URI if ( ! defined( 'EDURA_DIR_URI' ) ) { define('EDURA_DIR_URI', get_parent_theme_file_uri().'/' ); } // Assist URI if ( ! defined( 'EDURA_DIR_ASSIST_URI' ) ) { define( 'EDURA_DIR_ASSIST_URI', get_theme_file_uri('/assets/') ); } // Css File URI if ( ! defined( 'EDURA_DIR_CSS_URI' ) ) { define( 'EDURA_DIR_CSS_URI', get_theme_file_uri('/assets/css/') ); } // Js File URI if (!defined('EDURA_DIR_JS_URI')) { define('EDURA_DIR_JS_URI', get_theme_file_uri('/assets/js/')); } // Base Directory if (!defined('EDURA_DIR_PATH')) { define('EDURA_DIR_PATH', get_parent_theme_file_path() . '/'); } //Inc Folder Directory if (!defined('EDURA_DIR_PATH_INC')) { define('EDURA_DIR_PATH_INC', EDURA_DIR_PATH . 'inc/'); } //EDURA framework Folder Directory if (!defined('EDURA_DIR_PATH_FRAM')) { define('EDURA_DIR_PATH_FRAM', EDURA_DIR_PATH_INC . 'edura-framework/'); } //Hooks Folder Directory if (!defined('EDURA_DIR_PATH_HOOKS')) { define('EDURA_DIR_PATH_HOOKS', EDURA_DIR_PATH_INC . 'hooks/'); } //Demo Data Folder Directory Path if( !defined( 'EDURA_DEMO_DIR_PATH' ) ){ define( 'EDURA_DEMO_DIR_PATH', EDURA_DIR_PATH_INC.'demo-data/' ); } //Demo Data Folder Directory URI if( !defined( 'EDURA_DEMO_DIR_URI' ) ){ define( 'EDURA_DEMO_DIR_URI', EDURA_DIR_URI.'inc/demo-data/' ); }