PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.13.0
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.13.0
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 2.13.0, at admin/templates/settings.php

28 lines 1.0 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 Cookie_Detection::COOKIE_PREFIX ?>"
19 data-url="<?php echo Helpers::createResetAllEvergreenCampaignsUrl('admin') ?>">Reset all evergreen
20 campaigns for me...
21 </button>
22 <br>
23 <button type="button" class="button button-default hurrytResetAllEvergreenCampaigns hurryt-block"
24 data-cookie-prefix="<?php echo Cookie_Detection::COOKIE_PREFIX ?>"
25 data-url="<?php echo Helpers::createResetAllEvergreenCampaignsUrl('all') ?>">Reset all evergreen
26 campaigns for all visitors...
27 </button>
28 </div>