| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u/x/h/uxhactp/www/wp-content/themes/bridge/vc_templates/ |
Upload File : |
<?php
$args = array(
"number_of_columns" => "",
"columns_proportion" => "",
"background_color" => "",
"switch_to_one_column" => "",
"alignment_one_column" => "",
);
$html = "";
extract(shortcode_atts($args, $atts));
$number_of_columns_class = "";
$elements_holder_style = "";
if($number_of_columns != ''){
$number_of_columns_class = " " . $number_of_columns ;
}
if($columns_proportion != '') {
$number_of_columns_class .= ' eh_two_columns_' . $columns_proportion;
}
if($switch_to_one_column != ""){
$number_of_columns_class .= " responsive_mode_from_" . $switch_to_one_column ;
} else {
$number_of_columns_class .= " responsive_mode_from_768" ;
}
if($alignment_one_column != ""){
$number_of_columns_class .= " alignment_one_column_" . $alignment_one_column ;
}
if($background_color != ""){
$elements_holder_style = " style='background-color:". $background_color ."'";
}
$html = "<div class='q_elements_holder" . $number_of_columns_class . "' ". $elements_holder_style .">";
$html .= do_shortcode($content);
$html .= '</div>';
echo $html;