notices
5 years ago
admin-bar.php
7 years ago
admin-tab-advanced.php
7 years ago
admin-tab-logs.php
5 years ago
admin-tab-main.php
7 years ago
admin-tab-plugins.php
5 years ago
admin-tab-themes.php
5 years ago
advanced-premium-preview.php
7 years ago
advanced-premium.php
5 years ago
exclude-users.php
5 years ago
force-updates.php
5 years ago
reset-options.php
5 years ago
admin-tab-advanced.php
25 lines
| 1 | <?php if (!defined('ABSPATH')) die('No direct access.'); ?> |
| 2 | <div id="result"><?php |
| 3 | $reset_options = get_site_option('easy_updates_manager_reset'); |
| 4 | if (isset($_GET['action']) && 'reset' == $_GET['action'] && false !== $reset_options && 'true' === $reset_options) { |
| 5 | ?> |
| 6 | <div class="updated eum-updated"><p> |
| 7 | <?php |
| 8 | esc_html_e('The plugin settings have now been reset.', 'stops-core-theme-and-plugin-updates'); |
| 9 | ?> |
| 10 | </p></div> |
| 11 | <?php |
| 12 | delete_site_option('easy_updates_manager_reset'); |
| 13 | } |
| 14 | ?></div> |
| 15 | <div id="eum-adv-settings-container"> |
| 16 | <div id="eum-adv-settings-menu" class="wp-clearfix"> |
| 17 | <div> |
| 18 | <?php do_action('eum_advanced_headings'); ?> |
| 19 | </div> |
| 20 | </div> |
| 21 | <div id="eum-adv-settings"> |
| 22 | <?php do_action('eum_advanced_settings'); ?> |
| 23 | </div> |
| 24 | </div> |
| 25 |