HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vcstore.stgviitor.com/wp-content/themes/buzzstore/sparklethemes/init.php
<?php
/**
 * Main Custom admin functions area
 *
 * @since SparklewpThemes
 *
 * @param BuzzStore
 *
*/
if( !function_exists('buzzstore_file_directory') ){

    function buzzstore_file_directory( $file_path ){
        if( file_exists( trailingslashit( get_stylesheet_directory() ) . $file_path) ) {
            return trailingslashit( get_stylesheet_directory() ) . $file_path;
        }
        else{
            return trailingslashit( get_template_directory() ) . $file_path;
        }
    }
}


/**
 * Load Custom Admin functions that act independently of the theme functions.
*/
require buzzstore_file_directory('sparklethemes/functions.php');

/**
 * Custom template tags for this theme.
*/
require buzzstore_file_directory('sparklethemes/core/template-tags.php');

/**
 * Custom functions that act independently of the theme header.
*/
require buzzstore_file_directory('sparklethemes/core/custom-header.php');

/**
 * Custom functions that act independently of the theme templates.
*/
require buzzstore_file_directory('sparklethemes/core/extras.php');

/**
 * Load Jetpack compatibility file.
*/
require buzzstore_file_directory('sparklethemes/core/jetpack.php');

/**
 * Customizer additions.
*/
require buzzstore_file_directory('sparklethemes/customizer/customizer.php');

/**
 * Load widget compatibility field file.
*/
require buzzstore_file_directory('sparklethemes/buzzwidgets/widgets-fields.php');

/**
 * Load header hooks file.
*/
require buzzstore_file_directory('sparklethemes/hooks/header.php');

/**
 * Load footer hooks file.
*/
require buzzstore_file_directory('sparklethemes/hooks/footer.php');

/**
 * Load woocommerce hooks file.
*/
if ( buzzstore_is_woocommerce_activated() ) {
	require buzzstore_file_directory('sparklethemes/hooks/woocommerce.php');
}

/**
 * Load theme about page
*/
require buzzstore_file_directory('sparklethemes/admin/about-theme/buzzstore-about.php');