HEX
Server: LiteSpeed
System: Linux da4 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: wwwprimemarka (2294)
PHP: 5.6.40
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/templates/widgets/contacts.php
<?php defined('ABSPATH') OR die('This script cannot be accessed directly.');

/**
 * Output header contacts block
 *
 * (!) Important: this file is not intended to be overloaded, so use the below hooks for customizing instead
 *
 * @action Before the template: 'us_before_template:templates/widgets/contacts'
 * @action After the template: 'us_after_template:templates/widgets/contacts'
 */
?>

<div class="w-contacts">
	<div class="w-contacts-list">
	<?php if ( us_get_option( 'header_contacts_phone' ) ): ?>
		<div class="w-contacts-item for_phone">
			<span class="w-contacts-item-value"><?php echo wp_kses( us_get_option( 'header_contacts_phone' ), '<a><strong><span>' ) ?></span>
		</div>
	<?php endif; /* header phone */ ?>
	<?php if ( us_get_option( 'header_contacts_email' ) ): ?>
		<div class="w-contacts-item for_email">
			<span class="w-contacts-item-value">
				<a href="mailto:<?php echo sanitize_email( us_get_option( 'header_contacts_email' ) ) ?>">
					<?php echo us_get_option( 'header_contacts_email' ) ?>
				</a>
			</span>
		</div>
	<?php endif; /* header email */ ?>
	<?php if ( us_get_option( 'header_contacts_custom_text' ) ): ?>
		<div class="w-contacts-item for_custom">
			<?php
			if ( us_get_option( 'header_contacts_custom_icon' ) ) {
				?><i class="<?php echo us_prepare_icon_class( us_get_option( 'header_contacts_custom_icon' ) ) ?>"></i><?php
			}
			?>
			<span class="w-contacts-item-value"><?php echo wp_kses( us_get_option( 'header_contacts_custom_text' ), '<a><strong><span>') ?></span>
		</div>
	<?php endif; /* header custom text */ ?>
	</div>
</div>