/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
js_composer
/
include
/
templates
/
shortcodes
/
Upload File
HOME
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Shortcode attributes * @var $atts array * @var $content - shortcode content * Shortcode class * @var $this WPBakeryShortCode_VC_Basic_Grid */ $this->post_id = false; $this->items = array(); $css = $el_class = ''; $posts = $filter_terms = array(); $this->buildAtts( $atts, $content ); $css = isset( $atts['css'] ) ? $atts['css'] : ''; $el_class = isset( $atts['el_class'] ) ? $atts['el_class'] : ''; $class_to_filter = 'vc_grid-container vc_clearfix wpb_content_element ' . $this->shortcode; $class_to_filter .= vc_shortcode_custom_css_class( $css, ' ' ) . $this->getExtraClass( $el_class ); $css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, $class_to_filter, $this->settings['base'], $atts ); wp_enqueue_script( 'prettyphoto' ); wp_enqueue_style( 'prettyphoto' ); if ( 'true' === $this->atts['btn_add_icon'] ) { vc_icon_element_fonts_enqueue( $this->atts['btn_i_type'] ); } $this->buildGridSettings(); if ( isset( $this->atts['style'] ) && 'pagination' === $this->atts['style'] ) { wp_enqueue_script( 'twbs-pagination' ); } if ( ! empty( $atts['page_id'] ) ) { $this->grid_settings['page_id'] = (int) $atts['page_id']; } $this->enqueueScripts(); $animation = isset( $this->atts['initial_loading_animation'] ) ? $this->atts['initial_loading_animation'] : 'zoomIn'; $wrapper_attributes = array(); // Used for preload first page if ( ! vc_is_page_editable() ) { if ( in_array( $this->atts['style'], array( 'load-more', 'lazy', 'all', ) ) && in_array( $this->settings['base'], array( 'vc_basic_grid' ) ) ) { $this->atts['max_items'] = $this->atts['items_per_page'] > $this->atts['max_items'] ? $this->atts['max_items'] : $this->atts['items_per_page']; $this->buildItems(); } } if ( ! empty( $atts['el_id'] ) ) { $wrapper_attributes[] = 'id="' . esc_attr( $atts['el_id'] ) . '"'; } ?><!-- vc_grid start --> <div class="vc_grid-container-wrapper vc_clearfix" <?php echo implode( ' ', $wrapper_attributes ); ?>> <div class="<?php echo esc_attr( $css_class ) ?>" data-initial-loading-animation="<?php echo esc_attr( $animation ); ?>" data-vc-<?php echo esc_attr( $this->pagable_type ); ?>-settings="<?php echo esc_attr( json_encode( $this->grid_settings ) ); ?>" data-vc-request="<?php echo esc_attr( apply_filters( 'vc_grid_request_url', admin_url( 'admin-ajax.php' ) ) ); ?>" data-vc-post-id="<?php echo esc_attr( get_the_ID() ); ?>" data-vc-public-nonce="<?php echo vc_generate_nonce( 'vc-public-nonce' ); ?>"> <?php // preload first page echo $this->renderItems(); ?> </div> </div><!-- vc_grid end -->