OwlCyberSecurity - MANAGER
Edit File: template-functions.php
<?php use MuseaElatedNamespace\Modules\Header\Lib\HeaderFactory; if ( ! function_exists( 'musea_elated_get_header' ) ) { /** * Loads header HTML based on header type option. Sets all necessary parameters for header * and defines musea_elated_filter_header_type_parameters filter */ function musea_elated_get_header() { $id = musea_elated_get_page_id(); //will be read from options $header_type = musea_elated_get_meta_field_intersect( 'header_type', $id ); $menu_area_in_grid = musea_elated_get_meta_field_intersect( 'menu_area_in_grid', $id ); $header_behavior = musea_elated_get_meta_field_intersect( 'header_behaviour', $id ); if ( HeaderFactory::getInstance()->validHeaderObject() ) { $parameters = array( 'hide_logo' => musea_elated_options()->getOptionValue( 'hide_logo' ) == 'yes', 'menu_area_in_grid' => $menu_area_in_grid == 'yes', 'show_sticky' => in_array( $header_behavior, array( 'sticky-header-on-scroll-up', 'sticky-header-on-scroll-down-up' ) ), 'show_fixed_wrapper' => in_array( $header_behavior, array( 'fixed-on-scroll' ) ), ); $parameters = apply_filters( 'musea_elated_filter_header_type_parameters', $parameters, $header_type ); HeaderFactory::getInstance()->getHeaderObject()->loadTemplate( $parameters ); } } add_action( 'musea_elated_action_after_wrapper_inner', 'musea_elated_get_header', 10 ); } if ( ! function_exists( 'musea_elated_get_logo' ) ) { /** * Loads logo HTML * * @param $slug */ function musea_elated_get_logo( $slug = '' ) { $id = musea_elated_get_page_id(); $header_height = musea_elated_set_default_menu_height_for_header_types(); if ( $slug == 'sticky' ) { $logo_image = musea_elated_get_meta_field_intersect( 'logo_image_sticky', $id ); } else { $logo_image = musea_elated_get_meta_field_intersect( 'logo_image', $id ); } $logo_image_dark = musea_elated_get_meta_field_intersect( 'logo_image_dark', $id ); $logo_image_light = musea_elated_get_meta_field_intersect( 'logo_image_light', $id ); //get logo image dimensions and set style attribute for image link. $logo_dimensions = musea_elated_get_image_dimensions( $logo_image ); $logo_styles = ''; if ( is_array( $logo_dimensions ) && array_key_exists( 'height', $logo_dimensions ) ) { $logo_height = $logo_dimensions['height']; $logo_styles = 'height: ' . intval( $logo_height / 2 ) . 'px;'; //divided with 2 because of retina screens } else if ( ! empty( $header_height ) && empty( $logo_dimensions ) ) { $logo_styles = 'height: ' . intval( $header_height / 2 ) . 'px;'; //divided with 2 because of retina screens } $params = array( 'logo_image' => $logo_image, 'logo_image_dark' => $logo_image_dark, 'logo_image_light' => $logo_image_light, 'logo_styles' => $logo_styles ); $params = apply_filters( 'musea_elated_filter_get_logo_html_parameters', $params ); musea_elated_get_module_template_part( 'parts/logo', 'header', $slug, $params ); } } if ( ! function_exists( 'musea_elated_get_main_menu' ) ) { /** * Loads main menu HTML * * @param string $additional_class addition class to pass to template */ function musea_elated_get_main_menu( $additional_class = 'eltdf-default-nav' ) { musea_elated_get_module_template_part( 'parts/navigation', 'header', '', array( 'additional_class' => $additional_class ) ); } } if ( ! function_exists( 'musea_elated_get_header_widget_area_one' ) ) { /** * Loads header widgets area HTML */ function musea_elated_get_header_widget_area_one() { $page_id = musea_elated_get_page_id(); $custom_menu_widget_area = get_post_meta( $page_id, 'eltdf_custom_header_widget_area_one_meta', true ); if ( get_post_meta( $page_id, 'eltdf_disable_header_widget_areas_meta', 'true' ) !== 'yes' ) { if ( is_active_sidebar( 'eltdf-header-widget-area-one' ) && empty( $custom_menu_widget_area ) ) { dynamic_sidebar( 'eltdf-header-widget-area-one' ); } else if ( ! empty( $custom_menu_widget_area ) && is_active_sidebar( $custom_menu_widget_area ) ) { dynamic_sidebar( $custom_menu_widget_area ); } } } } if ( ! function_exists( 'musea_elated_get_header_widget_area_two' ) ) { /** * Loads header widgets area HTML */ function musea_elated_get_header_widget_area_two() { $page_id = musea_elated_get_page_id(); $custom_menu_widget_area = get_post_meta( $page_id, 'eltdf_custom_header_widget_area_two_meta', true ); if ( get_post_meta( $page_id, 'eltdf_disable_header_widget_areas_meta', 'true' ) !== 'yes' ) { if ( is_active_sidebar( 'eltdf-header-widget-area-two' ) && empty( $custom_menu_widget_area ) ) { dynamic_sidebar( 'eltdf-header-widget-area-two' ); } else if ( ! empty( $custom_menu_widget_area ) && is_active_sidebar( $custom_menu_widget_area ) ) { dynamic_sidebar( $custom_menu_widget_area ); } } } } if ( ! function_exists( 'musea_elated_is_header_widget_area_active' ) ) { /** * Check is header widgets area active */ function musea_elated_is_header_widget_area_active( $area ) { if ( empty( $area ) || ! in_array( $area, array( 'one', 'two' ) ) ) { return false; } $page_id = musea_elated_get_page_id(); $custom_menu_widget_area = get_post_meta( $page_id, 'eltdf_custom_header_widget_area_' . $area . '_meta', true ); $is_active = false; if ( get_post_meta( $page_id, 'eltdf_disable_header_widget_areas_meta', 'true' ) !== 'yes' ) { if ( is_active_sidebar( 'eltdf-header-widget-area-' . $area ) && empty( $custom_menu_widget_area ) ) { $is_active = true; } else if ( ! empty( $custom_menu_widget_area ) && is_active_sidebar( $custom_menu_widget_area ) ) { $is_active = true; } } return $is_active; } }