HEX
Server: Apache
System: Linux vpshost0650.publiccloud.com.br 4.4.79-grsec-1.lc.x86_64 #1 SMP Wed Aug 2 14:18:21 -03 2017 x86_64
User: bandeirantesbomb3 (10068)
PHP: 8.0.7
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: /home/goremar3/public_html/wp-content/plugins/elementskit-lite/widgets/video/parts/video-button.php
<?php
if($ekit_video_popup_button_style == 'icon' || $ekit_video_inline_button_style == 'icon') {
	$this->add_render_attribute('button', ['class' => [ 'ekit_icon_button' ]]);
}

$glow_animation_class = '';
if ($ekit_video_popup_video_glow == 'yes' && !empty($ekit_video_popup_glow_animation_type)) {
    $glow_animation_class = 'glow-' . esc_attr($ekit_video_popup_glow_animation_type);
}elseif ($ekit_video_inline_video_glow == 'yes' && !empty($ekit_video_inline_glow_animation_type)) {
    $glow_animation_class = 'glow-' . esc_attr($ekit_video_inline_glow_animation_type);

}

$this->add_render_attribute('button', [
    'class' => [$glow_animation_class]
]);

if (isset($ekit_video_popup_radio_wave_scale['size'])) {
	$this->add_render_attribute(
		'button',
		'glow-radio_wave',
		'--ekit-radio-wave-scale: '. $ekit_video_popup_radio_wave_scale['size'].';'
	);
}

if (isset($ekit_video_inline_radio_wave_scale['size'])) {
	$this->add_render_attribute(
		'button',
		'glow-radio_wave',
		'--ekit-radio-wave-scale: '. $ekit_video_inline_radio_wave_scale['size'].';'
	);
}

if($ekit_video_popup_video_type == 'self' && $ekit_video_style === 'popup') {
	$this->add_render_attribute('button', ['class' => ['ekit-video-popup'], 'href' => '#'.$generate_id]);
}elseif($ekit_video_style === 'popup'){
	$this->add_render_attribute('button', ['class' => ['ekit-video-popup'], 'href' => $ekit_video_popup_url]);
}

if ($ekit_video_style === 'popup') {
	$this->add_render_attribute('button', ['class' => ['ekit-video-popup-btn'], 'aria-label' => "video-popup"]);
}
if ($ekit_video_style === 'inline' && isset($ekit_video_inline_button_icons__switch_overlay) && $ekit_video_inline_button_icons__switch_overlay === 'yes') {
	$this->add_render_attribute('button', ['class' => ['ekit-video-inline-btn'], 'aria-label' => "video-inline"]);
}

?>

<a <?php $this->print_render_attribute_string('button'); ?>>
	<?php if ($ekit_video_popup_button_style == 'text') : ?>
		<span class="ekit-video-popup-title"><?php echo esc_html($ekit_video_popup_button_title); ?></span>
	<?php endif; ?>
	<?php if ($ekit_video_popup_button_style == 'icon' && $ekit_video_popup_button_icons != '') : ?>
		<?php $this->video_icon(); ?>
	<?php endif; ?>
	<?php if ($ekit_video_popup_button_style == 'both') : ?>
		<?php if ($ekit_video_popup_icon_align == 'before' && $ekit_video_popup_button_icons != '') : ?>
			<?php  $this->video_icon(); ?>
		<?php endif; ?>
		<span class="ekit-video-popup-title"><?php echo esc_html($ekit_video_popup_button_title); ?></span>
		<?php if ($ekit_video_popup_icon_align == 'after' && $ekit_video_popup_button_icons != '') : ?>
			<?php $this->video_icon(); ?>
		<?php endif; ?>
	<?php endif; ?>

	<?php if ($ekit_video_inline_button_style == 'text') : ?>
		<span><?php echo esc_html($ekit_video_inline_button_title); ?></span>
	<?php endif; ?>
	<?php if ($ekit_video_inline_button_style == 'icon' && $ekit_video_inline_button_icons != '') : ?>
		<?php $this->video_icon(); ?>
	<?php endif; ?>
	<?php if ($ekit_video_inline_button_style == 'both') : ?>
		<?php if ($ekit_video_inline_icon_align == 'before' && $ekit_video_inline_button_icons != '') : ?>
			<?php  $this->video_icon(); ?>
		<?php endif; ?>
		<span><?php echo esc_html($ekit_video_inline_button_title); ?></span>
		<?php if ($ekit_video_inline_icon_align == 'after' && $ekit_video_inline_button_icons != '') : ?>
			<?php $this->video_icon(); ?>
		<?php endif; ?>
	<?php endif; ?>
</a>