PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
templates
/
elements
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Shortcode: vc_column * * Overloaded by UpSolution custom implementation. * * Dev note: if you want to change some of the default values or acceptable attributes, overload the shortcodes config. * * @var $shortcode string Current shortcode name * @var $shortcode_base string The original called shortcode name (differs if called an alias) * @var $content string Shortcode's inner content * * @var $width string Width in format: 1/2 (is set by WPBakery Page Builder renderer) * @var $text_color string Text color * @var $animate string Animation type: '' / 'fade' / 'afc' / 'afl' / 'afr' / 'afb' / 'aft' / 'hfc' / 'wfc' * @var $animate_delay float Animation delay (in seconds) * @var $el_id string element ID * @var $el_class string Additional class * @var $offset string WPBakery Page Builder classes for responsive behaviour * @var $css string Custom CSS */ $inner_classes = $el_id_string = $link_html = ''; if ( function_exists( 'wpb_translateColumnWidthToSpan' ) ) { $width = wpb_translateColumnWidthToSpan( $width ); } elseif ( function_exists( 'us_wpb_translateColumnWidthToSpan' ) ) { $width = us_wpb_translateColumnWidthToSpan( $width ); } if ( function_exists( 'vc_column_offset_class_merge' ) ) { $width = vc_column_offset_class_merge( $offset, $width ); } elseif ( function_exists( 'us_vc_column_offset_class_merge' ) ) { $width = us_vc_column_offset_class_merge( $offset, $width ); } $classes = $width . ' wpb_column vc_column_container'; if ( function_exists( 'vc_shortcode_custom_css_has_property' ) AND vc_shortcode_custom_css_has_property( $css, array( 'border', 'background', ) ) ) { $classes .= ' has-fill'; } elseif ( function_exists( 'us_vc_shortcode_custom_css_has_property' ) AND us_vc_shortcode_custom_css_has_property( $css, array( 'border', 'background', ) ) ) { $classes .= ' has-fill'; } if ( ! empty( $animate ) ) { $classes .= ' animate_' . $animate; } if ( ! empty( $css ) AND function_exists( 'vc_shortcode_custom_css_class' ) ) { $inner_classes .= ' ' . vc_shortcode_custom_css_class( $css, ' ' ); } if ( ! empty( $text_color ) ) { $inner_classes .= ' color_custom'; } $classes .= ( ! empty( $el_class ) ) ? ( ' ' . $el_class ) : ''; $el_id = ( ! empty( $el_id ) ) ? ( ' id="' . esc_attr( $el_id ) . '"' ) : ''; // Link $link_atts = us_generate_link_atts( $link ); if ( ! empty( $link_atts ) ) { $classes .= ' has-link'; $link_html = '<a class="vc_column-link smooth-scroll"' . $link_atts . '></a>'; } $inline_css = us_prepare_inline_css( array( 'color' => $text_color, 'animation-delay' => empty( $animate_delay ) ? '' : floatval( $animate_delay ) . 's', ) ); // Output the element $output = '<div class="' . $classes . '"' . $el_id . $inline_css . '>'; $output .= '<div class="vc_column-inner' . $inner_classes . '">'; $output .= '<div class="wpb_wrapper">' . do_shortcode( $content ) . '</div>'; $output .= $link_html; $output .= '</div></div>'; echo $output;
[+]
..
[-] person.php
[edit]
[-] separator.php
[edit]
[-] post_custom_field.php
[edit]
[-] post_image.php
[edit]
[-] page_block.php
[edit]
[-] image_slider.php
[edit]
[-] cform.php
[edit]
[-] progbar.php
[edit]
[-] btn.php
[edit]
[-] product_field.php
[edit]
[-] socials.php
[edit]
[-] cta.php
[edit]
[-] message.php
[edit]
[-] vc_wp_custommenu.php
[edit]
[-] contacts.php
[edit]
[-] post_taxonomy.php
[edit]
[-] flipbox.php
[edit]
[-] grid.php
[edit]
[-] post_comments.php
[edit]
[-] gallery.php
[edit]
[-] sharing.php
[edit]
[-] post_date.php
[edit]
[-] product_ordering.php
[edit]
[-] post_navigation.php
[edit]
[-] add_to_cart.php
[edit]
[-] product_gallery.php
[edit]
[-] gmaps.php
[edit]
[-] vc_tta_tabs.php
[edit]
[-] breadcrumbs.php
[edit]
[-] page_title.php
[edit]
[-] counter.php
[edit]
[-] vc_video.php
[edit]
[-] cart.php
[edit]
[-] post_content.php
[edit]
[-] image.php
[edit]
[-] vc_row_inner.php
[edit]
[-] dropdown.php
[edit]
[-] iconbox.php
[edit]
[-] vc_column.php
[edit]
[-] post_title.php
[edit]
[-] hwrapper.php
[edit]
[-] .elements.php
[edit]
[-] vc_column_text.php
[edit]
[-] additional_menu.php
[edit]
[-] vc_tta_section.php
[edit]
[-] popup.php
[edit]
[-] scroller.php
[edit]
[-] menu.php
[edit]
[-] pricing.php
[edit]
[-] search.php
[edit]
[-] text.php
[edit]
[-] post_author.php
[edit]
[-] vc_row.php
[edit]
[-] itext.php
[edit]
[-] html.php
[edit]