| 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 setup.
*
* @since 1.0.0
*
* @package The7
*/
defined( 'ABSPATH' ) || exit;
if ( ! function_exists( 'presscore_load_theme_modules' ) ) :
/**
* Load supported modules.
*
* @since 3.0.0
*/
function presscore_load_theme_modules() {
$supported_modules = get_theme_support( 'presscore-modules' );
if ( empty( $supported_modules[0] ) ) {
return;
}
foreach ( $supported_modules[0] as $module ) {
locate_template( "inc/mods/{$module}/{$module}.php", true );
}
}
add_action( 'after_setup_theme', 'presscore_load_theme_modules', 10 );
endif;
if ( ! function_exists( 'presscore_setup' ) ) :
/**
* Theme setup.
*
* @since 1.0.0
*/
function presscore_setup() {
/**
* Load child theme text domain.
*/
if ( is_child_theme() ) {
load_child_theme_textdomain( 'the7mk2', get_stylesheet_directory() . '/languages' );
}
/**
* Load theme text domain.
*/
load_theme_textdomain( 'the7mk2', get_template_directory() . '/languages' );
/**
* Register custom menu.
*/
register_nav_menus(
array(
'primary' => _x( 'Primary Menu', 'backend', 'the7mk2' ),
'split_left' => _x( 'Split Menu Left', 'backend', 'the7mk2' ),
'split_right' => _x( 'Split Menu Right', 'backend', 'the7mk2' ),
'mobile' => _x( 'Mobile Menu', 'backend', 'the7mk2' ),
'top' => _x( 'Header Microwidget 1', 'backend', 'the7mk2' ),
'header_microwidget2' => _x( 'Header Microwidget 2', 'backend', 'the7mk2' ),
'bottom' => _x( 'Bottom Menu', 'backend', 'the7mk2' ),
)
);
/**
* Add default posts and comments RSS feed links to head.
*/
add_theme_support( 'automatic-feed-links' );
/**
* Enable support for Post Thumbnails.
*/
add_theme_support( 'post-thumbnails' );
/**
* Add title tag support.
*/
add_theme_support( 'title-tag' );
add_theme_support( 'align-wide' );
add_theme_support( 'responsive-embeds' );
add_theme_support( 'wp-block-styles' );
add_theme_support( 'editor-styles' );
add_editor_style( 'inc/admin/assets/css/style-editor.min.css' );
// TODO: Run only in front.
$less_vars = the7_get_new_less_vars_manager();
list( $first_accent_color, $accent_gradient_obj ) = the7_less_get_accent_colors( $less_vars );
// Editor color palette.
add_theme_support(
'editor-color-palette',
array(
array(
'name' => __( 'Accent', 'the7mk2' ),
'slug' => 'accent',
'color' => $first_accent_color,
),
array(
'name' => __( 'Dark Gray', 'the7mk2' ),
'slug' => 'dark-gray',
'color' => '#111',
),
array(
'name' => __( 'Light Gray', 'the7mk2' ),
'slug' => 'light-gray',
'color' => '#767676',
),
array(
'name' => __( 'White', 'the7mk2' ),
'slug' => 'white',
'color' => '#FFF',
),
)
);
/**
* Enable support for various theme modules.
*/
presscore_enable_theme_modules();
/**
* Allow shortcodes in widgets.
*/
add_filter( 'widget_text', 'do_shortcode' );
/**
* Create upload dir.
*/
wp_upload_dir();
/**
* Register theme template parts dir.
*/
presscore_template_manager()->add_path( 'theme', 'template-parts' );
presscore_template_manager()->add_path( 'the7_admin', 'inc/admin/screens' );
wp_cache_add_non_persistent_groups( array( 'the7-tmp' ) );
}
add_action( 'after_setup_theme', 'presscore_setup', 5 );
endif;
/**
* Enqueue supplemental block editor styles
*/
function presscore_editor_frame_styles() {
the7_register_style( 'the7-editor-frame-styles', PRESSCORE_ADMIN_URI . '/assets/css/style-editor-frame' );
wp_enqueue_style( 'the7-editor-frame-styles' );
presscore_enqueue_web_fonts();
$css_cache = presscore_get_dynamic_css_cache();
$css_version = presscore_get_dynamic_css_version();
$dynamic_stylesheets = presscore_get_admin_dynamic_stylesheets_list();
foreach ( $dynamic_stylesheets as $handle => $stylesheet ) {
$stylesheet_obj = new The7_Dynamic_Stylesheet( $handle, $stylesheet['src'] );
$stylesheet_obj->setup_with_array( $stylesheet );
$stylesheet_obj->set_version( $css_version );
if ( is_array( $css_cache ) && array_key_exists( $handle, $css_cache ) ) {
$stylesheet_obj->set_css_body( $css_cache[ $handle ] );
}
$stylesheet_obj->enqueue();
}
}
add_action( 'enqueue_block_editor_assets', 'presscore_editor_frame_styles' );
/**
* Flush rewrite rules after theme switch.
*
* @since 1.0.0
*/
add_action( 'after_switch_theme', 'flush_rewrite_rules' );
if ( ! function_exists( 'presscore_enable_theme_modules' ) ) :
/**
* This function add support for various theme modules.
*
* @since 3.1.4
*/
function presscore_enable_theme_modules() {
$modules_to_load = array(
'archive-ext',
'compatibility',
'theme-update',
'tgmpa',
'demo-content',
'bundled-content',
'posts-defaults',
'dev-mode',
'options-wizard',
'dev-tools',
'remove-customizer',
'custom-fonts',
);
$dashboard_settings = array(
'portfolio',
'albums',
'team',
'testimonials',
'slideshow',
'benefits',
'logos',
'mega-menu',
'admin-icons-bar',
);
// Load modules that was enabled on dashboard.
foreach ( $dashboard_settings as $module_name ) {
if ( The7_Admin_Dashboard_Settings::get( $module_name ) ) {
$modules_to_load[] = $module_name;
}
}
/**
* Allow to manage theme active modules.
*
* @since 6.4.1
*/
$modules_to_load = apply_filters( 'the7_active_modules', $modules_to_load );
add_theme_support( 'presscore-modules', $modules_to_load );
}
endif;
if ( ! function_exists( 'presscore_add_theme_options' ) ) :
/**
* Set theme options path.
*
* @since 1.0.0
*/
function presscore_add_theme_options() {
return array( 'inc/admin/load-theme-options.php' );
}
endif;
if ( ! function_exists( 'presscore_widgets_init' ) ) :
/**
* Register widgetized areas.
*
* @since 1.0.0
*/
function presscore_widgets_init() {
if ( function_exists( 'of_get_option' ) ) {
$w_params = array(
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<div class="widget-title">',
'after_title' => '</div>',
);
$w_areas = apply_filters( 'presscore_widgets_init-sidebars', of_get_option( 'widgetareas' ) );
if ( ! empty( $w_areas ) && is_array( $w_areas ) ) {
$prefix = 'sidebar_';
foreach ( $w_areas as $sidebar_id => $sidebar ) {
$sidebar_args = array(
'name' => ( isset( $sidebar['sidebar_name'] ) ? $sidebar['sidebar_name'] : '' ),
'id' => $prefix . $sidebar_id,
'description' => ( isset( $sidebar['sidebar_desc'] ) ? $sidebar['sidebar_desc'] : '' ),
'before_widget' => $w_params['before_widget'],
'after_widget' => $w_params['after_widget'],
'before_title' => $w_params['before_title'],
'after_title' => $w_params['after_title'],
);
$sidebar_args = apply_filters( 'presscore_widgets_init-sidebar_args', $sidebar_args, $sidebar_id, $sidebar );
register_sidebar( $sidebar_args );
}
}
}
}
add_action( 'widgets_init', 'presscore_widgets_init' );
endif;
if ( ! function_exists( 'presscore_post_types_author_archives' ) ) :
/**
* Add custom post types to author archives.
*
* @since 1.0.0
*
* @param WP_Query $query WP_Query object.
*/
function presscore_post_types_author_archives( $query ) {
/**
* To avoid conflicts, run this hack in frontend only.
*/
if ( is_admin() ) {
return;
}
if ( $query->is_main_query() && $query->is_author ) {
$new_post_types = (array) apply_filters( 'presscore_author_archive_post_types', array() );
if ( $new_post_types ) {
array_unshift( $new_post_types, 'post' );
$post_type = $query->get( 'post_type' );
if ( ! $post_type ) {
$post_type = array();
}
$query->set( 'post_type', array_merge( (array) $post_type, $new_post_types ) );
}
}
}
add_action( 'pre_get_posts', 'presscore_post_types_author_archives' );
endif;
if ( ! function_exists( 'optionsframework_get_presets_list' ) ) :
/**
* Add theme options presets.
*
* @return array
*/
function optionsframework_get_presets_list() {
$presets_names = array(
'skin11r',
'skin12r',
'skin15r',
'skin14r',
'skin09r',
'skin03r',
'skin05r',
'skin02r',
'skin11b',
'skin16r',
'skin19b',
'skin19r',
'skin10r',
'skin07c',
'skin06r',
'wizard01',
'wizard02',
'wizard03',
'wizard05',
'wizard07',
'wizard08',
'wizard09',
);
$presets = array();
foreach ( $presets_names as $preset_name ) {
$presets[ $preset_name ] = array(
'src' => '/inc/presets/icons/' . $preset_name . '.gif',
'title' => $preset_name,
);
}
return $presets;
}
endif;
if ( ! function_exists( 'presscore_set_first_run_skin' ) ) :
/**
* Set first run skin.
*
* @since 1.0.0
*
* @param string $skin_name
* @return string
*/
function presscore_set_first_run_skin( $skin_name = '' ) {
return 'skin11r';
}
add_filter( 'options_framework_first_run_skin', 'presscore_set_first_run_skin' );
endif;
/**
* Return The7 rest namespace.
*
* @since 7.8.0
*
* @return string
*/
function the7_get_rest_namespace() {
return (string) apply_filters( 'the7_rest_namespace', 'the7/v1' );
}
/**
* Initialise The7 REST API.
*
* @since 7.8.0
*/
function the7_rest_api_init() {
$rest_namespace = the7_get_rest_namespace();
$the7_mail_controller = new The7_REST_Mail_Controller( $rest_namespace, new The7_ReCaptcha() );
$the7_mail_controller->register_routs();
}
add_action( 'rest_api_init', 'the7_rest_api_init' );
/**
* Return post types with default meta boxes.
*
* @return array
*/
function presscore_get_pages_with_basic_meta_boxes() {
return apply_filters( 'presscore_pages_with_basic_meta_boxes', array( 'page', 'post' ) );
}