File: /var/www/html/wpkoopkj/wp-content/plugins/ohio-extra/shortcodes/banner/banner.php
<?php
/**
* WPBakery Page Builder Ohio Banner shortcode
*/
add_shortcode( 'ohio_banner', 'ohio_banner_func' );
function ohio_banner_func( $atts ) {
if ( isset( $atts ) && is_array( $atts ) ) extract( $atts );
// Default values, parsing and filtering
$block_type_layout = isset( $block_type_layout ) ? OhioExtraFilter::string( $block_type_layout, 'string', 'full' ) : 'full';
$block_type_full_align = isset( $block_type_full_align ) ? OhioExtraFilter::string( $block_type_full_align, 'string', 'left' ) : 'left';
$card_effect = isset( $card_effect ) ? OhioExtraFilter::string( $card_effect, 'string', 'none' ) : 'none';
$equal_height = isset( $equal_height ) ? OhioExtraFilter::boolean( $equal_height ) : true;
$tilt_effect = isset( $tilt_effect ) ? OhioExtraFilter::boolean( $tilt_effect ) : true;
$border_radius = isset( $border_radius ) ? OhioExtraFilter::string( $border_radius, 'string', '') : '';
$use_link = isset( $use_link ) ? OhioExtraFilter::boolean( $use_link ) : true;
$link_url = OhioExtraParser::VC_link_params( ( isset( $link_url ) ? $link_url : '' ), array( 'caption' => esc_html__( '', 'ohio-extra' ) ) );
$title = isset( $title ) ? OhioExtraFilter::string( $title ) : false;
$title_typo = isset( $title_typo ) ? OhioExtraFilter::string( $title_typo ) : false;
$image = OhioExtraParser::generateImageAttsById( OhioExtraFilter::string( $background_image ), $title );
$subtitle = isset( $subtitle ) ? OhioExtraFilter::string( $subtitle ) : false;
$description = isset( $description ) ? rawurldecode( base64_decode( $description ) ) : '';
$description = OhioExtraFilter::string( $description, 'textarea', '' );
$description_typo = isset( $description_typo ) ? OhioExtraFilter::string( $description_typo ) : false;
$subtitle_typo = isset( $subtitle_typo ) ? OhioExtraFilter::string( $subtitle_typo ) : false;
$overlay_color = isset( $overlay_color ) ? OhioExtraFilter::string( $overlay_color ) : false;
// Design options
$content_styles = isset( $content_styles ) ? OhioExtraFilter::string( $content_styles ) : false;
$content_styles_str = strpos($content_styles, "{");
$content_styles_css = substr($content_styles, $content_styles_str);
// Appear effect
$appearance_effect = isset( $appearance_effect ) ? OhioExtraFilter::string( $appearance_effect, 'attr', 'none' ) : 'none';
$appearance_once = isset( $appearance_once ) ? OhioExtraFilter::boolean( $appearance_once ) : true;
$appearance_duration = isset( $appearance_duration ) ? OhioExtraFilter::string( $appearance_duration, 'attr', false ) : false;
$appearance_delay = isset( $appearance_delay ) ? OhioExtraFilter::string( $appearance_delay, 'attr', false ) : false;
$animation_attrs = '';
if ( $appearance_effect != 'none' ) {
OhioHelper::add_required_script( 'aos' );
}
if ( $appearance_effect != 'none' ) {
$animation_attrs .= ' data-aos=' . esc_attr( $appearance_effect ) . '';
}
if ( !$appearance_once ) {
$animation_attrs .= ' data-aos-once=true';
}
if ( !empty( $appearance_duration ) ) {
$animation_attrs .= ' data-aos-duration=' . intval( $appearance_duration ) . '';
}
if ( !empty( $appearance_delay ) ) {
$animation_attrs .= ' data-aos-delay=' . intval( $appearance_delay ) . '';
}
// Tilt effect
$tilt_attrs = '';
if ( !$tilt_effect ) {
$tilt_attrs .= ' data-tilt=true data-tilt-perspective=6000';
}
// Wrapper ID
$wrapper_id = uniqid( 'ohio-custom-' );
// Wrapper classes
$wrapper_classes = '';
$layout_classes = '';
switch ( $block_type_layout ) {
case 'full':
$layout_classes .= '';
break;
case 'inner':
$layout_classes .= ' -with-overlay';
break;
case 'inner_hover':
$layout_classes .= ' -image-only';
break;
}
$hover_effect = '';
switch ( $card_effect ) {
case 'scale':
$hover_effect .= ' -img-scale';
break;
case 'overlay':
$hover_effect .= ' -img-overlay';
break;
case 'greyscale':
$hover_effect .= ' -img-greyscale';
break;
}
$content_classes = '';
switch ( $block_type_full_align ) {
case 'center':
$content_classes .= ' -center';
break;
case 'right':
$content_classes .= ' -right';
break;
}
$wrapper_classes .= isset( $css_class ) ? ' ' . OhioExtraFilter::string( $css_class, 'attr', '' ) : '';
$wrapper_classes .= $layout_classes;
$wrapper_classes .= $hover_effect;
$wrapper_classes .= $content_classes;
if ( !$equal_height ) {
$wrapper_classes .= ' -metro';
}
/**
* Assembling styles
*/
$_style_block = '';
$banner_title_typo = OhioExtraParser::VC_typo_to_CSS( $title_typo );
OhioExtraParser::VC_typo_custom_font( $title_typo );
if ( $banner_title_typo ) {
$_selector = '#' . $wrapper_id . ' .title{';
$_block_typo = $banner_title_typo;
if ( !empty( $_block_typo['desktop'] ) ) {
$_style_block .= $_selector . $_block_typo['desktop'] . '}';
}
if ( !empty( $_block_typo['tablet'] ) ) {
$_style_block .= '@media screen and (min-width: 769px) and (max-width: 1024px){';
$_style_block .= $_selector . $_block_typo['tablet'] . '}';
$_style_block .= '}';
}
if ( !empty( $_block_typo['mobile'] ) ) {
$_style_block .= '@media screen and (max-width: 768px){';
$_style_block .= $_selector . $_block_typo['mobile'] . '}';
$_style_block .= '}';
}
}
$banner_subtitle_typo = OhioExtraParser::VC_typo_to_CSS( $subtitle_typo );
OhioExtraParser::VC_typo_custom_font( $subtitle_typo );
if ( $banner_subtitle_typo ) {
$_selector = '#' . $wrapper_id . ' .subtitle{';
$_block_typo = $banner_subtitle_typo;
if ( !empty( $_block_typo['desktop'] ) ) {
$_style_block .= $_selector . $_block_typo['desktop'] . '}';
}
if ( !empty( $_block_typo['tablet'] ) ) {
$_style_block .= '@media screen and (min-width: 769px) and (max-width: 1024px){';
$_style_block .= $_selector . $_block_typo['tablet'] . '}';
$_style_block .= '}';
}
if ( !empty( $_block_typo['mobile'] ) ) {
$_style_block .= '@media screen and (max-width: 768px){';
$_style_block .= $_selector . $_block_typo['mobile'] . '}';
$_style_block .= '}';
}
}
$banner_description_typo = OhioExtraParser::VC_typo_to_CSS( $description_typo );
OhioExtraParser::VC_typo_custom_font( $description_typo );
if ( $banner_description_typo ) {
$_selector = '#' . $wrapper_id . ' .overlay-details p{';
$_block_typo = $banner_description_typo;
if ( !empty( $_block_typo['desktop'] ) ) {
$_style_block .= $_selector . $_block_typo['desktop'] . '}';
}
if ( !empty( $_block_typo['tablet'] ) ) {
$_style_block .= '@media screen and (min-width: 769px) and (max-width: 1024px){';
$_style_block .= $_selector . $_block_typo['tablet'] . '}';
$_style_block .= '}';
}
if ( !empty( $_block_typo['mobile'] ) ) {
$_style_block .= '@media screen and (max-width: 768px){';
$_style_block .= $_selector . $_block_typo['mobile'] . '}';
$_style_block .= '}';
}
}
if ( $block_type_layout == 'full' ) {
$overlay_css = OhioExtraParser::VC_color_to_CSS( $overlay_color, 'background:linear-gradient(rgba(0, 0, 0, 0), {{color}});' );
} else {
$overlay_css = OhioExtraParser::VC_color_to_CSS( $overlay_color, 'background-color:{{color}};' );
}
if ( $overlay_css ) {
$_style_block .= '#' . $wrapper_id . ' .overlay-details{';
$_style_block .= $overlay_css;
$_style_block .= '}';
}
if ( isset( $border_radius ) && $border_radius != '' ) {
$_style_block .= '#' . $wrapper_id . '.card:not(.-contained) .image-holder{';
$_style_block .= 'border-radius:' . $border_radius . 'px;';
$_style_block .= '}';
}
if ( $content_styles_css ) {
$_style_block .= '#' . $wrapper_id . $content_styles_css;
}
OhioLayout::append_to_shortcodes_css_buffer( $_style_block );
ob_start();
include( plugin_dir_path( __FILE__ ) . 'banner__view.php' );
return ob_get_clean();
}