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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
/** * WPBakery WPBakery Page Builder row * * @package WPBakeryPageBuilder * */ class WPBakeryShortCode_Vc_Row extends WPBakeryShortCode { protected $predefined_atts = array( 'el_class' => '', );
public $nonDraggableClass = 'vc-non-draggable-row';
/** * @param $settings */ public function __construct( $settings ) { parent::__construct( $settings ); $this->shortcodeScripts(); }
protected function shortcodeScripts() { wp_register_script( 'vc_jquery_skrollr_js', vc_asset_url( 'lib/bower/skrollr/dist/skrollr.min.js' ), array( 'jquery-core' ), WPB_VC_VERSION, true ); wp_register_script( 'vc_youtube_iframe_api_js', 'https://www.youtube.com/iframe_api', array(), WPB_VC_VERSION, true ); }
/** * @param $atts * @param null $content * @return mixed|string */ protected function content( $atts, $content = null ) { $prefix = '';
return $prefix . $this->loadTemplate( $atts, $content ); }
/** * This returs block controls */ public function getLayoutsControl() { global $vc_row_layouts; $controls_layout = '<span class="vc_row_layouts vc_control">'; foreach ( $vc_row_layouts as $layout ) { $controls_layout .= '<a class="vc_control-set-column set_columns" data-cells="' . $layout['cells'] . '" data-cells-mask="' . $layout['mask'] . '" title="' . $layout['title'] . '"><i class="vc-composer-icon vc-c-icon-' . $layout['icon_class'] . '"></i></a> '; } $controls_layout .= '<br/><a class="vc_control-set-column set_columns custom_columns" data-cells="custom" data-cells-mask="custom" title="' . esc_attr__( 'Custom layout', 'js_composer' ) . '">' . esc_html__( 'Custom', 'js_composer' ) . '</a> '; $controls_layout .= '</span>';
return $controls_layout; }
/** * @param $controls * @param string $extended_css * @return string * @throws \Exception */ public function getColumnControls( $controls, $extended_css = '' ) { $output = '<div class="vc_controls vc_controls-row controls_row vc_clearfix">'; $controls_end = '</div>'; // Create columns $controls_layout = $this->getLayoutsControl();
$controls_move = ' <a class="vc_control column_move vc_column-move" href="#" title="' . esc_attr__( 'Drag row to reorder', 'js_composer' ) . '" data-vc-control="move"><i class="vc-composer-icon vc-c-icon-dragndrop"></i></a>'; $moveAccess = vc_user_access()->part( 'dragndrop' )->checkStateAny( true, null )->get(); if ( ! $moveAccess ) { $controls_move = ''; } $controls_add = ' <a class="vc_control column_add vc_column-add" href="#" title="' . esc_attr__( 'Add column', 'js_composer' ) . '" data-vc-control="add"><i class="vc-composer-icon vc-c-icon-add"></i></a>'; $controls_delete = '<a class="vc_control column_delete vc_column-delete" href="#" title="' . esc_attr__( 'Delete this row', 'js_composer' ) . '" data-vc-control="delete"><i class="vc-composer-icon vc-c-icon-delete_empty"></i></a>'; $controls_edit = ' <a class="vc_control column_edit vc_column-edit" href="#" title="' . esc_attr__( 'Edit this row', 'js_composer' ) . '" data-vc-control="edit"><i class="vc-composer-icon vc-c-icon-mode_edit"></i></a>'; $controls_clone = ' <a class="vc_control column_clone vc_column-clone" href="#" title="' . esc_attr__( 'Clone this row', 'js_composer' ) . '" data-vc-control="clone"><i class="vc-composer-icon vc-c-icon-content_copy"></i></a>'; $controls_toggle = ' <a class="vc_control column_toggle vc_column-toggle" href="#" title="' . esc_attr__( 'Toggle row', 'js_composer' ) . '" data-vc-control="toggle"><i class="vc-composer-icon vc-c-icon-arrow_drop_down"></i></a>'; $editAccess = vc_user_access_check_shortcode_edit( $this->shortcode ); $allAccess = vc_user_access_check_shortcode_all( $this->shortcode );
if ( is_array( $controls ) && ! empty( $controls ) ) { foreach ( $controls as $control ) { $control_var = 'controls_' . $control; if ( ( $editAccess && 'edit' === $control ) || $allAccess ) { if ( isset( ${$control_var} ) ) { $output .= ${$control_var}; } } } $output .= $controls_end; } elseif ( is_string( $controls ) ) { $control_var = 'controls_' . $controls; if ( ( $editAccess && 'edit' === $controls ) || $allAccess ) { if ( isset( ${$control_var} ) ) { $output .= ${$control_var} . $controls_end; } } } else { $row_edit_clone_delete = '<span class="vc_row_edit_clone_delete">'; if ( $allAccess ) { $row_edit_clone_delete .= $controls_delete . $controls_clone . $controls_edit; } elseif ( $editAccess ) { $row_edit_clone_delete .= $controls_edit; } $row_edit_clone_delete .= $controls_toggle; $row_edit_clone_delete .= '</span>';
if ( $allAccess ) { $output .= '<div>' . $controls_move . $controls_layout . $controls_add . '</div>' . $row_edit_clone_delete . $controls_end; } elseif ( $editAccess ) { $output .= $row_edit_clone_delete . $controls_end; } else { $output .= $row_edit_clone_delete . $controls_end; } }
return $output; }
/** * @param $atts * @param null $content * @return string * @throws \Exception */ public function contentAdmin( $atts, $content = null ) { $atts = shortcode_atts( $this->predefined_atts, $atts );
$output = '';
$column_controls = $this->getColumnControls( $this->settings( 'controls' ) );
$output .= '<div data-element_type="' . $this->settings['base'] . '" class="' . $this->cssAdminClass() . '">'; $output .= str_replace( '%column_size%', 1, $column_controls ); $output .= '<div class="wpb_element_wrapper">'; $output .= '<div class="vc_row vc_row-fluid wpb_row_container vc_container_for_children">'; if ( '' === $content && ! empty( $this->settings['default_content_in_template'] ) ) { $output .= do_shortcode( shortcode_unautop( $this->settings['default_content_in_template'] ) ); } else { $output .= do_shortcode( shortcode_unautop( $content ) );
} $output .= '</div>'; if ( isset( $this->settings['params'] ) ) { $inner = ''; foreach ( $this->settings['params'] as $param ) { if ( ! isset( $param['param_name'] ) ) { continue; } $param_value = isset( $atts[ $param['param_name'] ] ) ? $atts[ $param['param_name'] ] : ''; if ( is_array( $param_value ) ) { // Get first element from the array reset( $param_value ); $first_key = key( $param_value ); $param_value = $param_value[ $first_key ]; } $inner .= $this->singleParamHtmlHolder( $param, $param_value ); } $output .= $inner; } $output .= '</div>'; $output .= '</div>';
return $output; }
/** * @return string * @throws \Exception */ public function cssAdminClass() { $sortable = ( vc_user_access_check_shortcode_all( $this->shortcode ) ? ' wpb_sortable' : ' ' . $this->nonDraggableClass );
return 'wpb_' . $this->settings['base'] . $sortable . '' . ( ! empty( $this->settings['class'] ) ? ' ' . $this->settings['class'] : '' ); }
/** * @return string * @deprecated 4.5 - due to it is not used anywhere? 4.5 * @typo Bock - Block */ public function customAdminBockParams() { // this function is depreacted
return ''; }
/** * @param string $bg_image * @param string $bg_color * @param string $bg_image_repeat * @param string $font_color * @param string $padding * @param string $margin_bottom * * @return string * @deprecated 4.5 * */ public function buildStyle( $bg_image = '', $bg_color = '', $bg_image_repeat = '', $font_color = '', $padding = '', $margin_bottom = '' ) { // this function is deprecated
$has_image = false; $style = ''; $image_url = wp_get_attachment_url( $bg_image ); if ( $image_url ) { $has_image = true; $style .= 'background-image: url(' . $image_url . ');'; } if ( ! empty( $bg_color ) ) { $style .= vc_get_css_color( 'background-color', $bg_color ); } if ( ! empty( $bg_image_repeat ) && $has_image ) { if ( 'cover' === $bg_image_repeat ) { $style .= 'background-repeat:no-repeat;background-size: cover;'; } elseif ( 'contain' === $bg_image_repeat ) { $style .= 'background-repeat:no-repeat;background-size: contain;'; } elseif ( 'no-repeat' === $bg_image_repeat ) { $style .= 'background-repeat: no-repeat;'; } } if ( ! empty( $font_color ) ) { $style .= vc_get_css_color( 'color', $font_color ); } if ( '' !== $padding ) { $style .= 'padding: ' . ( preg_match( '/(px|em|\%|pt|cm)$/', $padding ) ? $padding : $padding . 'px' ) . ';'; } if ( '' !== $margin_bottom ) { $style .= 'margin-bottom: ' . ( preg_match( '/(px|em|\%|pt|cm)$/', $margin_bottom ) ? $margin_bottom : $margin_bottom . 'px' ) . ';'; }
return empty( $style ) ? '' : ' style="' . esc_attr( $style ) . '"'; } }
|