HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/builder/template/spa_package.php
<?php
extract(shortcode_atts(array(
	'title' => '',
	'price' => '',
	'item' => '',
), $atts));
parse_str(urldecode($item), $time);
?>
<div class="package wow fadeInLeft animated" data-wow-offset="250" data-wow-delay="200ms" style="visibility: visible;-webkit-animation-delay: 200ms; -moz-animation-delay: 200ms; animation-delay: 200ms;">
	<h5><?php echo esc_attr($title); ?></h5>
   	<ul class="list-default">
   	<?php 
   	if(is_array($time)) {
   		foreach ($time as $key => $value) {
   			if(isset($value['item'])) echo '<li>'.esc_attr($value['item']).'</li>';
   		}
   	}
   	?>   		
   	</ul>
    <strong class="price"><small>$</small><?php echo esc_attr($price) ?></strong>
</div><!-- end package -->