| 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> |