| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/azfilmz.com/wp-content/themes/frames/framework/ |
Upload File : |
<?php
/**
* @package HaruTheme
* @version 1.0.0
* @author Administrator <admin@harutheme.com>
* @copyright Copyright (c) 2017, HaruTheme
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
* @link http://harutheme.com
*/
if ( ! function_exists( 'haru_framework' ) ) {
function haru_framework() {
// Load include libraries: theme_setup, theme_options,...
if ( file_exists( get_template_directory() . '/framework/includes/include_init.php' ) ) {
require_once get_template_directory() . '/framework/includes/include_init.php';
}
// Load theme tax meta (taxonomy metabox)
if ( true == haru_check_core_plugin_status() ) {
require_once( get_template_directory() . '/framework/includes/plugin-functions.php' );
}
}
haru_framework();
}
// Check WooCommerce is active before use WooCommerce in theme
function haru_check_woocommerce_status() {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( class_exists( 'WooCommerce' ) ) {
return true;
} else {
return false;
}
}
// Check Haru Core plugin load
function haru_check_core_plugin_status() {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( class_exists( 'Haru_Frames' ) ) {
return true;
} else {
return false;
}
}
// Check Custom Fonts plugin load
function haru_check_custom_fonts_plugin_status() {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( class_exists( 'Bsf_Custom_Fonts_Render' ) ) {
return true;
} else {
return false;
}
}