HEX
Server: LiteSpeed
System: Linux srv158.niagahoster.com 4.18.0-553.30.1.lve.el8.x86_64 #1 SMP Tue Dec 3 01:21:19 UTC 2024 x86_64
User: u1694298 (3732)
PHP: 7.4.33
Disabled: symlink,shell_exec,exec,popen,system,dl,passthru,escapeshellarg,escapeshellcmd,show_source,pcntl_exec
Upload Files
File: /home/u1694298/www/wp-content/plugins/td-composer/includes/shortcodes/vc_empty_space.php
<?php
/**
 * Created by PhpStorm.
 * User: tagdiv
 * Date: 17.06.2016
 * Time: 16:48
 */

class vc_empty_space extends tdc_composer_block {

	function render($atts, $content = null) {
		parent::render($atts);

		$atts = shortcode_atts(
			array(
				'height' => '32px',
				'el_class' => '',
			), $atts, 'vc_empty_space' );

		$inline_css = ( (float) $atts['height'] >= 0.0 ) ? ' style="height: ' . esc_attr( $atts['height'] ) . '"' : '';



		$editing_class = '';
		$editing_text = '';
		if (tdc_state::is_live_editor_iframe() || tdc_state::is_live_editor_ajax()) {
			$editing_class = 'tdc-editing-vc_empty_space';
			$editing_text = '<div class="tdc-editing-text">Empty space</div>';
		}


		return '<div class="wpb_wrapper td_block_empty_space ' . $this->get_wrapper_class() . ' ' . $this->get_block_classes( array( $atts['el_class'], $editing_class ) ) . '" ' . $inline_css . '>' . $this->get_block_css() . $editing_text .  '</div>';
	}
}