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/shortcode/spa_package.php
<?php
if(!class_exists('iz_vc_package'))
{
	class iz_vc_package extends iz_shortcode{
		public function __construct()
		{
			$this->custom_shortcode('iz_package', array($this, 'iz_render_html'));
			add_action('vc_before_init', array($this, 'iz_vc_shortcode'));
		}

		public function iz_render_html($atts, $content ='')
		{
			return $this->get_template('spa_package.php', $atts, $content);
		}

		public function iz_vc_shortcode()
		{
		   	vc_map( array(
		      "name"      => __( "Spa Package", IZ_LANG),
		      "base"      => "iz_package",
		      "category"  => __( "Spa Shortcode", IZ_LANG),
		      // 'admin_enqueue_css' => array(get_template_directory_uri().'/builder/assets/css/vc_extends_css.css'),
		      "params" => array(		        
		        array(
		        	'type' => 'textfield',
		    		'heading' => __('Package title', IZ_LANG),
		    		'param_name' => 'title',		      		
		    	),		    	
		    	array(
		    		'type' => 'textfield',
		    		'heading' => __('Package price', IZ_LANG),
		    		'param_name' => 'price',		    		
		    	),
		    	array(
		    		'type' => 'iz_about',
		    		'heading' => __('Package detail item', IZ_LANG),
		    		'param_name' => 'item',		    		
		    	),
		    )
			));
		}
	}
}