HEX
Server: Apache
System: Linux host.fiblib.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64
User: scientificreligi (1062)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/scientificreligi/www/wp-content/plugins/auteur-framework/shortcodes/space/template.php
<?php
/**
 * Shortcode attributes
 * @var $atts
 * @var $desktop
 * @var $mobile
 * @var $tablet
 * @var $tablet_portrait
 * @var $mobile_landscape
 * Shortcode class
 * @var $this WPBakeryShortCode_GSF_Space
 */
$atts = vc_map_get_attributes($this->getShortcode(), $atts);
extract($atts);

if($mobile == "" && $tablet == "")
    $mobile =  $tablet =  $desktop;
$sid = uniqid();
?>
<div class="g5plus-space space-<?php echo esc_attr($sid); ?>" data-id="<?php echo esc_attr($sid); ?>" data-tablet="<?php echo esc_attr($tablet); ?>" data-tablet-portrait="<?php echo esc_attr($tablet_portrait); ?>" data-mobile="<?php echo esc_attr($mobile); ?>" data-mobile-landscape="<?php echo esc_attr($mobile_landscape); ?>" style="clear: both; display: block; height: <?php echo esc_attr($desktop); ?>px"></div>