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_testinomial.php
<?php
if(!class_exists('iz_vc_testinomial'))
{
	class iz_vc_testinomial extends iz_shortcode{
		public function __construct()
		{
			$this->custom_shortcode('iz_spa_testinomial', 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_testinomial.php', $atts, $content);
		}

		public function iz_vc_shortcode()
		{
		   	vc_map( array(
		      "name"      => __( "Spa Client Say", IZ_LANG),
		      "base"      => "iz_spa_testinomial",
		      "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' => __('Title', IZ_LANG),
		    		'param_name' => 'title',
		      		'value' => '',
		    				   
		    	),
		    	array(
		        	'type' => 'textfield',
		    		'heading' => __('Title span', IZ_LANG),
		    		'param_name' => 'subtitle',
		      		'value' => '',		    	
		    	),		    	
		    )
			));
		}
	}
}