HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/eng/wp-content/plugins/jet-elements/templates/jet-download-button/global/index.php
<?php
	$settings = $this->get_settings_for_display();
	$position = isset( $settings['download_icon_position'] ) ? $settings['download_icon_position'] : 'left';

?><a class="elementor-button elementor-size-md jet-download jet-download-icon-position-<?php echo $position; ?>" href="<?php echo jet_elements_download_handler()->get_download_link( $settings['download_file'] ); ?>"><?php

	$icon_format = '<span class="jet-download__icon jet-download-icon-' . $position . ' jet-elements-icon">%s</span>';

	$this->__icon( 'download_icon', $icon_format );

	$label    = $this->__get_html( 'download_label' );
	$sublabel = $this->__get_html( 'download_sub_label' );

	if ( $label || $sublabel ) {

		echo '<span class="jet-download__text">';

		printf(
			'<span class="jet-download__label">%s</span>',
			$this->__format_label( $label, $settings['download_file'] )
		);

		printf(
			'<small class="jet-download__sub-label">%s</small>',
			$this->__format_label( $sublabel, $settings['download_file'] )
		);

		echo '</span>';
	}

?></a>