| Server IP : 116.202.121.150 / Your IP : 216.73.216.207 Web Server : Apache System : Linux server5.febas.net 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64 User : k9887-1 ( 1171) PHP Version : 8.2.32 Disable Function : show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen, system, shell_exec, passthru, popen, proc_open, exec MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/k9887-1/htdocs/_fisch/wp-content/themes/dt-the7/inc/ |
Upload File : |
<?php
/**
* Theme init.
*
* @since 1.0.0
*
* @package The7
*/
defined( 'ABSPATH' ) || exit;
define( 'THE7_MINIMUM_COMPATIBLE_WP_VERSION', '5.3.0' );
/**
* Display notice about incompatible WP version.
*
* @since 7.5.0
*/
function the7_incompatible_wp_version_notice() {
?>
<div class="notice notice-error">
<p>
<strong><?php echo esc_html_x( 'The7 detected incompatible WordPress version!', 'admin', 'the7mk2' ); ?></strong>
</p>
<p>
<?php
echo esc_html(
sprintf(
// translators: %s: Minimum WP version.
_x( 'Minimum compatible version of WordPress is %s. Please, update your WordPress installation to be able to use The7 theme.', 'admin', 'the7mk2' ),
THE7_MINIMUM_COMPATIBLE_WP_VERSION
)
);
?>
</p>
<p>
<a href="<?php echo esc_url( admin_url( '/update-core.php' ) ); ?>"><?php echo esc_html( _x( 'Update WordPress.', 'admin', 'the7mk2' ) ); ?></a>
</p>
</div>
<?php
}
/**
* WP version.
*
* @var string $wp_version
*/
// Include an unmodified $wp_version.
require ABSPATH . WPINC . '/version.php';
if ( version_compare( $wp_version, THE7_MINIMUM_COMPATIBLE_WP_VERSION, '<' ) ) {
add_action( 'admin_notices', 'the7_incompatible_wp_version_notice' );
return;
}
require_once trailingslashit( get_template_directory() ) . 'inc/constants.php';
require_once PRESSCORE_DIR . '/class-the7-autoloader.php';
new The7_Autoloader();
if ( ! class_exists( 'Color', false ) ) {
require_once PRESSCORE_DIR . '/vendor/color/color.php';
}
require_once PRESSCORE_DIR . '/deprecated-functions.php';
require_once PRESSCORE_EXTENSIONS_DIR . '/core-functions.php';
require_once PRESSCORE_EXTENSIONS_DIR . '/stylesheet-functions.php';
require_once PRESSCORE_EXTENSIONS_DIR . '/dt-pagination.php';
require_once PRESSCORE_DIR . '/vendor/lessphp/the7_lessc.inc.php';
require_once PRESSCORE_EXTENSIONS_DIR . '/less-vars/less-functions.php';
require_once PRESSCORE_EXTENSIONS_DIR . '/class-presscore-simple-bag.php';
// Them options.
if ( ! defined( 'OPTIONS_FRAMEWORK_VERSION' ) ) {
require_once PRESSCORE_EXTENSIONS_DIR . '/options-framework/options-framework.php';
require_once PRESSCORE_ADMIN_DIR . '/theme-options-parts.php';
add_filter( 'options_framework_location', 'presscore_add_theme_options' );
}
/**
* Include utility classes.
*/
require_once PRESSCORE_CLASSES_DIR . '/template-config/presscore-config.class.php';
require_once PRESSCORE_CLASSES_DIR . '/tags.class.php';
require_once PRESSCORE_CLASSES_DIR . '/class-presscore-post-type-rewrite-rules-filter.php';
require_once PRESSCORE_DIR . '/helpers.php';
require_once locate_template( 'inc/widgets/load-widgets.php' );
require_once locate_template( 'inc/shortcodes/load-shortcodes.php' );
// Setup theme.
require_once PRESSCORE_DIR . '/theme-setup.php';
require_once PRESSCORE_DIR . '/template-hooks.php';
// Dynamic stylesheets.
require_once PRESSCORE_DIR . '/dynamic-stylesheets-functions.php';
// Frontend functions.
require_once PRESSCORE_DIR . '/static.php';
// Legacy.
The7_Admin_Dashboard_Settings::setup();
require_once PRESSCORE_MODS_DIR . '/legacy/legacy.php';
require_once PRESSCORE_ADMIN_DIR . '/admin-notices.php';
require_once PRESSCORE_MODS_DIR . '/dev-tools/main-module.class.php';
The7_DevToolMainModule::init();
//if ( The7_Admin_Dashboard_Settings::get( 'critical-alerts' ) ) {
$critical_alert_email = The7_Admin_Dashboard_Settings::get( 'critical-alerts-email' );
if ( ! $critical_alert_email ) {
$critical_alert_email = get_site_option( 'admin_email' );
}
$critical_alerts = new The7_Critical_Alerts( $critical_alert_email, new The7_Remote_API( presscore_get_purchase_code() ) );
$critical_alerts->bootstrap();
//}
if ( is_admin() ) {
$the7_admin_dashboard = new The7_Admin_Dashboard();
$the7_admin_dashboard->init();
require_once PRESSCORE_ADMIN_DIR . '/admin-functions.php';
require_once PRESSCORE_ADMIN_DIR . '/site-health-tests/the7-site-health-tests.php';
require_once PRESSCORE_ADMIN_DIR . '/admin-bulk-actions.php';
require_once locate_template( 'inc/admin/load-meta-boxes.php' );
The7_Theme_Auto_Deactivation::add_hooks();
} else {
$fa_enqueue_optimizer = new The7_FontAwesome_Enqueue_Optimizer();
$fa_enqueue_optimizer->run();
}