PluginProbe ʕ •ᴥ•ʔ
Easy Updates Manager / 9.0.7
Easy Updates Manager v9.0.7
trunk 2.0.0 2.1.0 2.2.0 2.2.1 2.3.0 2.4.0 2.5.0 2.5.1 2.6.0 2.7.0 3.0.0 3.1.0 3.2.0 3.3.0 3.4.0 3.5.0 3.6.0 4.0 4.0.2 4.0.3 4.1.0 4.1.10 4.1.12 4.2.21 4.2.24 4.3.0 4.3.10 4.3.12 4.3.13 4.6.0 4.7.0 5.0.0 5.1.0 5.1.1 5.2.0 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1 5.4.2 5.4.3 5.4.5 6.0.0 6.0.1 6.0.3 6.0.5 6.1.0 6.1.1 6.1.3 6.1.5 6.1.8 6.2.0 6.2.11 6.2.2 6.2.3 6.2.5 6.2.7 6.2.9 6.3.0 6.3.1 6.3.3 6.4.0 6.4.4 6.4.6 6.4.7 6.4.8 7.0.0 7.0.1 7.0.2 7.0.3 8.0.1 8.0.2 8.0.3 8.0.5 8.1.0 8.1.1 8.2.0 9.0.0 9.0.1 9.0.10 9.0.11 9.0.12 9.0.13 9.0.14 9.0.15 9.0.16 9.0.17 9.0.18 9.0.19 9.0.20 9.0.21 9.0.3 9.0.5 9.0.6 9.0.7 9.0.8 9.0.9
stops-core-theme-and-plugin-updates / templates / admin-tab-advanced.php
stops-core-theme-and-plugin-updates / templates Last commit date
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