PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / src / Promotions / resources / views / CampaignWelcomeBanner.php

CampaignWelcomeBanner.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Promotions/resources/views/CampaignWelcomeBanner.php

71 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @var $elements
4 * @var $backgroundUrl
5 * @var $badgeIconUrl
6 * @var $heartIconUrl
7 * @var $exitIconUrl
8 * @var $campaignsPageUrl
9 */
10
11 ?>
12
13 <div <?php echo $elements->customWrapperAttributes; ?>
14 class='givewp-campaign-welcome-banner-background'
15 style='background-image: url("<?php echo esc_url($backgroundUrl); ?>"); no-repeat right;'>
16
17 <div class='givewp-campaign-welcome-banner'>
18 <div class='givewp-campaign-welcome-banner__actions'>
19 <div class='givewp-campaign-welcome-banner__actions__badge'>
20 <img src='<?php echo esc_url($badgeIconUrl); ?>' alt='badge' /> <?php echo esc_html__('NEW', 'give'); ?>
21 </div>
22 <button type='button' class='givewp-campaign-welcome-banner__actions__dismiss'
23 <?php echo $elements->closeAttributes(); ?>>
24 <img src='<?php echo esc_url($exitIconUrl); ?>' alt='exit'>
25 </button>
26 </div> <!-- End actions -->
27
28 <h2 class='givewp-campaign-welcome-banner__title'>
29 <?php echo esc_html__('Introducing Campaigns in Give 4.0 !', 'give'); ?> &nbsp; 🎉
30 </h2>
31 <p class='givewp-campaign-welcome-banner__description'>
32 <?php echo esc_html__('Say hello to a whole new way to supercharge your fundraising!', 'give'); ?> &nbsp;🚀
33 </p>
34
35 <div class='givewp-campaign-welcome-banner__features'>
36 <div class='givewp-campaign-welcome-banner__features__group'>
37 <div class='givewp-campaign-welcome-banner__features__group__item'>
38 <img src='<?php echo esc_url($heartIconUrl); ?>' alt='heart'>
39 <span><?php echo esc_html__(
40 'Easily create, manage, and level up your campaigns.',
41 'give'
42 ); ?></span>
43 </div>
44
45 <div class='givewp-campaign-welcome-banner__features__group__item'>
46 <img src='<?php echo esc_url($heartIconUrl); ?>' alt='heart'>
47 <span><?php echo esc_html__('Enjoy tailored reports—all in one awesome place!', 'give'); ?></span>
48 </div>
49 </div> <!-- End features group -->
50
51 <div class='givewp-campaign-welcome-banner__features__group'>
52 <div class='givewp-campaign-welcome-banner__features__group__item'>
53 <img src='<?php echo esc_url($heartIconUrl); ?>' alt='heart'>
54 <span><?php echo esc_html__('Add as many donation forms as you want.', 'give'); ?></span>
55 </div>
56
57 <div class='givewp-campaign-welcome-banner__features__group__item'>
58 <img src='<?php echo esc_url($heartIconUrl); ?>' alt='heart'>
59 <span><?php echo esc_html__('Update your campaigns on the fly.', 'give'); ?></span>
60 </div>
61 </div> <!-- End features group -->
62 </div> <!-- End features -->
63
64 <a class='givewp-campaign-welcome-banner__cta-button' href='<?php echo esc_url($campaignsPageUrl); ?>'>
65 <span class='givewp-campaign-welcome-banner'>
66 <?php echo esc_html__('Explore campaigns', 'give'); ?>
67 </span>
68 </a>
69 </div> <!-- End campaign welcome banner -->
70 </div> <!-- End campaign welcome banner background -->
71