1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
/** * Class WPBakeryShortCode_Vc_Hoverbox */ class WPBakeryShortCode_Vc_Hoverbox extends WPBakeryShortCode {
/** * @param $tag * @param $atts * @param $align * @return string * @throws \Exception */ public function getHeading( $tag, $atts, $align ) { if ( isset( $atts[ $tag ] ) && '' !== trim( $atts[ $tag ] ) ) { if ( isset( $atts[ 'use_custom_fonts_' . $tag ] ) && 'true' === $atts[ 'use_custom_fonts_' . $tag ] ) { $custom_heading = visual_composer()->getShortCode( 'vc_custom_heading' ); $data = vc_map_integrate_parse_atts( $this->shortcode, 'vc_custom_heading', $atts, $tag . '_' ); $data['font_container'] = implode( '|', array_filter( array( 'tag:h2', 'text_align:' . esc_attr( $align ), $data['font_container'], ) ) ); $data['text'] = $atts[ $tag ]; // provide text to shortcode
return $custom_heading->render( array_filter( $data ) ); } else { $inline_css = array(); $inline_css_string = ''; if ( isset( $atts['style'] ) && 'custom' === $atts['style'] ) { if ( ! empty( $atts['custom_text'] ) ) { $inline_css[] = vc_get_css_color( 'color', $atts['custom_text'] ); } } if ( $align ) { $inline_css[] = 'text-align:' . esc_attr( $align ); } if ( ! empty( $inline_css ) ) { $inline_css_string = ' style="' . implode( '', $inline_css ) . '"'; }
return '<h2' . $inline_css_string . '>' . $atts[ $tag ] . '</h2>'; } }
return ''; }
/** * @param $atts * @return string * @throws \Exception */ public function renderButton( $atts ) { $button_atts = vc_map_integrate_parse_atts( $this->shortcode, 'vc_btn', $atts, 'hover_btn_' ); $button = visual_composer()->getShortCode( 'vc_btn' );
return $button->render( array_filter( $button_atts ) ); }
}
|