PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / trunk
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce vtrunk
2.15.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 All 62 releases
hurrytimer / admin / templates / settings.php

settings.php in HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce trunk, at admin/templates/settings.php

26 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Hurrytimer;
3
4 use Hurrytimer\Utils\Helpers;
5
6 ?>
7
8 <div class="wrap hurryt-plugin-settings">
9 <h2>Settings</h2>
10 <form method="post" action="options.php">
11 <?php
12 settings_fields("hurrytimer_settings");
13 do_settings_sections("hurrytimer_settings");
14 submit_button();
15 ?>
16 </form>
17 <button type="button" class="button button-default hurrytResetAllEvergreenCampaigns hurryt-block"
18 data-cookie-prefix="<?php echo esc_attr(Cookie_Detection::COOKIE_PREFIX) ?>"
19 data-url="<?php echo esc_url(Helpers::createResetAllEvergreenCampaignsUrl('admin')) ?>"><?php esc_html_e('Reset all evergreen campaigns for me...', 'hurrytimer') ?>
20 </button>
21 <br>
22 <button type="button" class="button button-default hurrytResetAllEvergreenCampaigns hurryt-block"
23 data-cookie-prefix="<?php echo esc_attr(Cookie_Detection::COOKIE_PREFIX) ?>"
24 data-url="<?php echo esc_url(Helpers::createResetAllEvergreenCampaignsUrl('all')) ?>"><?php esc_html_e('Reset all evergreen campaigns for all visitors...', 'hurrytimer') ?>
25 </button>
26 </div>