| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/cornerstone/includes/shortcodes/ |
Upload File : |
<?php
// Column
// =============================================================================
function x_shortcode_column( $atts, $content = null ) {
extract( shortcode_atts( array(
'id' => '',
'class' => '',
'style' => '',
'type' => '',
'last' => '',
'fade' => '',
'fade_animation' => '',
'fade_animation_offset' => '',
'fade_duration' => '',
'bg_color' => ''
), $atts, 'x_column' ) );
$id = ( $id != '' ) ? 'id="' . esc_attr( $id ) . '"' : '';
$class = ( $class != '' ) ? 'x-column x-sm ' . esc_attr( $class ) : 'x-column x-sm';
$style = ( $style != '' ) ? $style : '';
$type = ( $type != '' ) ? $type : ' x-1-2';
$last = ( $last == 'true' ) ? ' last' : '';
$fade_animation = ( $fade_animation != '' ) ? $fade_animation : 'in';
$fade_animation_offset = ( $fade_animation_offset != '' ) ? $fade_animation_offset : '45px';
$fade_duration = ( $fade_duration != '' ) ? $fade_duration : '750';
$bg_color = ( $bg_color != '' ) ? ' background-color:' . cornerstone_post_process_color( $bg_color ) . ';' : '';
switch ( $type ) {
case '1/1' :
case 'whole' :
$type = ' x-1-1';
break;
case '1/2' :
case 'one-half' :
$type = ' x-1-2';
break;
case '1/3' :
case 'one-third' :
$type = ' x-1-3';
break;
case '2/3' :
case 'two-thirds' :
$type = ' x-2-3';
break;
case '1/4' :
case 'one-fourth' :
$type = ' x-1-4';
break;
case '3/4' :
case 'three-fourths' :
$type = ' x-3-4';
break;
case '1/5' :
case 'one-fifth' :
$type = ' x-1-5';
break;
case '2/5' :
case 'two-fifths' :
$type = ' x-2-5';
break;
case '3/5' :
case 'three-fifths' :
$type = ' x-3-5';
break;
case '4/5' :
case 'four-fifths' :
$type = ' x-4-5';
break;
case '1/6' :
case 'one-sixth' :
$type = ' x-1-6';
break;
case '5/6' :
case 'five-sixths' :
$type = ' x-5-6';
break;
default:
$type = ' x-1-1';
break;
}
if ( $fade == 'true' ) {
$fade = ' data-fade="true"';
$data = cs_generate_data_attributes( 'column', array( 'fade' => true ) );
switch ( $fade_animation ) {
case 'in' :
$fade_animation_offset = '';
break;
case 'in-from-top' :
$fade_animation_offset = ' transform: translate(0, -' . $fade_animation_offset . '); ';
break;
case 'in-from-left' :
$fade_animation_offset = ' transform: translate(-' . $fade_animation_offset . ', 0); ';
break;
case 'in-from-right' :
$fade_animation_offset = ' transform: translate(' . $fade_animation_offset . ', 0); ';
break;
case 'in-from-bottom' :
$fade_animation_offset = ' transform: translate(0, ' . $fade_animation_offset . '); ';
break;
}
$fade_animation_style = 'opacity: 0;' . $fade_animation_offset . 'transition-duration: ' . $fade_duration . 'ms;';
} else {
$data = '';
$fade = '';
$fade_animation_style = '';
}
$output = "<div {$id} class=\"{$class}{$type}{$last}\" style=\"{$style}{$fade_animation_style}{$bg_color}\" {$data}{$fade}>" . do_shortcode( $content ) . "</div>";
return $output;
}
add_shortcode( 'cs_column', 'x_shortcode_column' );
add_shortcode( 'x_column', 'x_shortcode_column' );