PluginProbe
FireBox – WooCommerce Popup Builder, Exit Intent Popup, Email Optin & Cart Abandonment / 1.0.0
FireBox – WooCommerce Popup Builder, Exit Intent Popup, Email Optin & Cart Abandonment v1.0.0
3.1.13 3.1.12 3.1.11 3.1.10 3.1.9 3.1.8 3.1.7 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 All 122 releases
firebox / Inc / Core / Layouts / public / closebutton.php

closebutton.php in FireBox – WooCommerce Popup Builder, Exit Intent Popup, Email Optin & Cart Abandonment 1.0.0, at Inc/Core/Layouts/public/closebutton.php

71 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package FireBox
4 * @version 1.0.0 Free
5 *
6 * @author FirePlugins <info@fireplugins.com>
7 * @link https://www.fireplugins.com
8 * @copyright Copyright © 2021 FirePlugins All Rights Reserved
9 * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
10 */
11
12 if (!defined('ABSPATH'))
13 {
14 exit; // Exit if accessed directly.
15 }
16 $box = $this->data->get('box');
17 $btnSource = is_string($this->data->get('box.params.data.closebutton.source', 'icon')) ? $this->data->get('box.params.data.closebutton.source', 'icon') : 'icon';
18 $color = is_string($this->data->get('box.params.data.closebutton.color', null)) ? $this->data->get('box.params.data.closebutton.color', null) : null;
19 $size = is_string($this->data->get('box.params.data.closebutton.size', null)) || is_int($this->data->get('box.params.data.closebutton.size', null)) ? (int) $this->data->get('box.params.data.closebutton.size', null) : null;
20 $cbStyles = '';
21 $styles = '';
22
23 if ($btnSource == 'icon')
24 {
25 $cbStyles = implode(';', array_filter(array(
26 $color ? 'color:' . $color : null,
27 $size ? 'font-size:' . $size . 'px' : null
28 )));
29 }
30
31 // Delay the display of the close button using CSS animation
32 $delay = (float) $this->data->get('box.params.data.closebutton.delay', 0);
33 if ($delay > 0)
34 {
35 $styles .= '
36 .fb-' . $box->ID . ' .fb-close {
37 visibility: hidden;
38 }
39
40 .fb-' . $box->ID . '.fb-visible .fb-close {
41 animation: ' . $delay . 's ebFadeIn;
42 animation-fill-mode: forwards;
43 }
44 ';
45 }
46
47 // Add the hover color
48 if ($hoverColor = $this->data->get('box.params.data.closebutton.hover', null))
49 {
50 $styles .= '
51 .fb-' . esc_attr($box->ID) . ' .fb-close:hover {
52 color: ' . esc_attr($hoverColor) . ' !important;
53 }
54 ';
55 }
56
57 if (!empty($styles))
58 {
59 add_action( 'wp_footer', function() use ($styles) {
60 echo '<style type="text/css">' . esc_attr($styles) . '</style>';
61 }, 100);
62 }
63
64 ?>
65 <button type="button" data-fbox-cmd="close" class="fb-close" aria-label="Close" style="<?php echo esc_attr($cbStyles); ?>">
66 <?php if ($btnSource == "image") { ?>
67 <img src="<?php echo esc_url($this->data->get('box.params.data.closebutton.image')); ?>"/>
68 <?php } else { ?>
69 <span aria-hidden="true">&times;</span>
70 <?php } ?>
71 </button>