File: /home/lesanew/www/wp-content/plugins/neobeat-core/inc/mobile-header/mobile-header.php
<?php
abstract class NeoBeatCoreMobileHeader {
public $overriding_whole_mobile_header = false;
public $slug;
protected $default_header_height;
protected $header_height;
public function __construct() {
$this->set_header_height();
add_filter( 'neobeat_filter_add_inline_style', array( $this, 'set_inline_mobile_header_styles' ) );
add_filter( 'neobeat_core_filter_content_margin_mobile', array( $this, 'get_content_margin' ) );
add_filter( 'neobeat_core_filter_title_padding_mobile', array( $this, 'get_title_padding' ) );
add_filter( 'neobeat_filter_localize_main_js', array( $this, 'set_global_javascript_variables' ) );
}
public function load_template( $parameters = array() ) {
$parameters = apply_filters( 'neobeat_core_filter_mobile_header_template', $parameters );
return neobeat_core_get_template_part( 'mobile-header/layouts/' . $this->slug, 'templates/' . $this->slug, '', $parameters );
}
public function set_inline_mobile_header_styles( $style ) {
$item_styles = array();
$height = neobeat_core_get_post_value_through_levels( 'qodef_' . $this->slug . '_mobile_header_height' );
$background_color = neobeat_core_get_post_value_through_levels( 'qodef_' . $this->slug . '_mobile_header_background_color' );
if ( $height !== '' ) {
$item_styles['height'] = intval( $height ) . 'px';
}
if ( ! empty( $background_color ) ) {
$item_styles['background-color'] = $background_color;
$style .= qode_framework_dynamic_style( '.qodef-mobile-header--' . $this->slug . ' #qodef-mobile-header-navigation .qodef-m-inner', array( 'background-color' => $item_styles['background-color'] ) );
}
if ( ! empty( $item_styles ) ) {
$style .= qode_framework_dynamic_style( '.qodef-mobile-header--' . $this->slug . ' #qodef-page-mobile-header', $item_styles );
}
return $style;
}
public function content_behind_header() {
$content_behind_header = neobeat_core_get_post_value_through_levels( 'qodef_content_behind_header' );
return $content_behind_header == 'yes' ? true : false;
}
public function get_content_margin( $margin ) {
if ( $this->content_behind_header() ) {
$margin += $this->header_height;
}
return $margin;
}
public function get_title_padding( $padding ) {
if ( $this->content_behind_header() ) {
$padding += $this->header_height;
}
return $padding;
}
function set_header_height() {
$header_height = neobeat_core_get_post_value_through_levels( 'qodef_' . $this->slug . '_mobile_header_height' );
$header_height = ! empty( $header_height ) ? intval( $header_height ) : $this->default_header_height;
$this->header_height = apply_filters( 'neobeat_core_filter_set_mobile_header_height', $header_height );
}
function set_global_javascript_variables( $global_vars ) {
$global_vars['mobileHeaderHeight'] = $this->header_height;
return $global_vars;
}
}