| Server IP : 216.250.13.251 / Your IP : 216.73.217.37 Web Server : nginx/1.24.0 System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/gunay/wp-content/plugins/rt19-extentions/vc_templates/ |
Upload File : |
<?php
$output = $el_class = $bg_image = $bg_color = $bg_image_repeat = $font_color = $padding = $margin_bottom = $css = '';
extract(shortcode_atts(array(
'rt_row_background_width' => '',
'rt_row_content_width' => '',
'rt_row_height' => '',
'rt_row_style' => '',
'rt_bg_selection' => '',
'rt_bg_color' => '',
'rt_bg_image' => '',
'rt_bg_effect' => '',
'rt_bg_parallax_effect' => '',
'rt_pspeed' => '',
'rt_bg_custom_height' => '',
'rt_bg_custom_alignment' => '',
'rt_bg_image_repeat' => '',
'rt_bg_position' => '',
'rt_bg_size' => '',
'rt_bg_attachment' => '',
'rt_row_paddings' => '',
'rt_padding_top' => '',
'rt_padding_bottom' => '',
'rt_padding_left' => '',
'rt_padding_right' => '',
'rt_border_radius_tl' => '',
'rt_border_radius_tr' => '',
'rt_border_radius_bl' => '',
'rt_border_radius_br' => '',
'rt_grid' => "",
'rt_overlap' => "",
'rt_row_borders' => "",
'el_class' => '',
'class' => '',
'id' => '',
'css' => '',
'css_animation' => '',
'full_height' => '',
'columns_placement' => 'middle',
'rt_column_placement' => '',
'rt_bg_overlay_color' => '',
'rt_bg_video_mp4' => '',
'rt_bg_video_webm' => '',
'rt_bg_video_youtube' => '',
'rt_equal_heights' => '',
'disable_element'=>'',
'rt_col_anim' => ''
), $atts));
wp_enqueue_script( 'wpb_composer_front_js' );
if( ! empty( $rt_bg_video_youtube ) ){
wp_enqueue_script( 'vc_youtube_iframe_api_js' );
}
$el_class = $this->getExtraClass($el_class) . $this->getCSSAnimation( $css_animation );
$class .= " ".apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'vc_row wpb_row '. ( $this->settings('base')==='vc_row_inner' ? 'vc_inner ' : '' ) . $el_class . vc_shortcode_custom_css_class( $css, ' ' ), $this->settings['base'], $atts );
//row style
$rt_row_style = empty( $rt_row_style ) && $this->settings('base') ==='vc_row' ? "default-style" : $rt_row_style;
$content = wpb_js_remove_wpautop($content,"true");
//create rt_row shortcode
$create_shortcode = '[rt_row vc_base="'.$this->settings('base').'" rt_row_background_width="'.$rt_row_background_width.'" rt_row_content_width="'.$rt_row_content_width.'" rt_row_height="'.$rt_row_height.'" rt_row_style="'.$rt_row_style.'" rt_bg_selection="'.$rt_bg_selection.'" rt_bg_color="'.$rt_bg_color.'" rt_bg_image="'.$rt_bg_image.'" rt_bg_effect="'.$rt_bg_effect.'" rt_bg_parallax_effect="'.$rt_bg_parallax_effect.'" rt_pspeed="'.$rt_pspeed.'" rt_bg_custom_height='.$rt_bg_custom_height.' rt_bg_custom_alignment = "'.$rt_bg_custom_alignment.'" rt_bg_image_repeat="'.$rt_bg_image_repeat.'" rt_bg_position="'.$rt_bg_position.'" rt_bg_size="'.$rt_bg_size.'" rt_bg_attachment="'.$rt_bg_attachment.'" rt_row_paddings="'.$rt_row_paddings.'" rt_padding_top="'.$rt_padding_top.'" rt_padding_bottom="'.$rt_padding_bottom.'" rt_padding_left="'.$rt_padding_left.'" rt_padding_right="'.$rt_padding_right.'" rt_border_radius_tl="'.$rt_border_radius_tl.'" rt_border_radius_tr="'.$rt_border_radius_tr.'" rt_border_radius_bl="'.$rt_border_radius_bl.'" rt_border_radius_br="'.$rt_border_radius_br.'" rt_grid="'.$rt_grid.'" rt_overlap="'.$rt_overlap.'" rt_row_borders="'.$rt_row_borders.'" el_class="'.$el_class.'" class="'.$class.'" id="'.$id.'" full_height="'.$full_height.'" columns_placement="'.$columns_placement.'" rt_column_placement="'.$rt_column_placement.'" rt_bg_overlay_color="'.$rt_bg_overlay_color.'" rt_bg_video_mp4="'.$rt_bg_video_mp4.'" rt_bg_video_webm="'.$rt_bg_video_webm.'" rt_bg_video_youtube="'.$rt_bg_video_youtube.'" rt_equal_heights="'.$rt_equal_heights.'" disable_element="'.$disable_element.'" rt_col_anim="'.$rt_col_anim.'"]'.$content.'[/rt_row]';
//run
echo do_shortcode( $create_shortcode );