PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
templates
/
elements
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Shortcode: vc_row_inner * * 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 $content_placement string Columns Content Position: 'top' / 'middle' / 'bottom' * @var $gap string gap class for columns * @var $el_id string * @var $el_class string * @var $disable_element string * @var $css string */ $atts = us_shortcode_atts( $atts, $shortcode_base ); if ( $disable_element === 'yes' ) { if ( function_exists( 'vc_is_page_editable' ) AND vc_is_page_editable() ) { $classes .= ' vc_hidden-lg vc_hidden-xs vc_hidden-sm vc_hidden-md'; } else { return ''; } } $class_name = ( $columns_type ) ? ' type_boxes' : ' type_default'; if ( ! empty( $content_placement ) ) { $class_name .= ' valign_' . $content_placement; } // Prepare extra styles for columns gap $cols_gap_styles = ''; $gap = trim( $gap ); if ( ! empty( $gap ) ) { $gap = trim( strip_tags( $gap ) ); $gap_class = 'gap-' . str_replace( array( '.', ',', ' ' ), '-', $gap ); $class_name .= ' ' . $gap_class; $cols_gap_styles = '<style>'; if ( $columns_type ) { $cols_gap_styles .= '.g-cols.' . $gap_class . '{margin:0 -' . $gap . '}'; } else { $cols_gap_styles .= '.g-cols.' . $gap_class . '{margin:0 calc(-1.5rem - ' . $gap . ')}'; } $cols_gap_styles .= '.' . $gap_class . ' > .vc_column_container {padding:' . $gap . '}'; $cols_gap_styles .= '</style>'; } if ( ! empty( $columns_reverse ) ) { $class_name .= ' reversed'; } // Preserving additional class for inner VC rows if ( $shortcode_base == 'vc_row_inner' ) { $class_name .= ' vc_inner'; } // Additional class set by a user in a shortcode attributes if ( ! empty( $el_class ) ) { $class_name .= ' ' . $el_class; } if ( function_exists( 'vc_shortcode_custom_css_class' ) ) { $class_name .= ' ' . vc_shortcode_custom_css_class( $css, ' ' ); } $class_name = apply_filters( 'vc_shortcodes_css_class', $class_name, $shortcode_base, $atts ); $row_id_param = ''; $output = '<div class="g-cols wpb_row ' . $class_name . '"'; if ( ! empty( $el_id ) ) { $output .= ' id="' . $el_id . '"'; } $output .= '>'; $output .= $cols_gap_styles; $output .= do_shortcode( $content ); $output .= '</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]