notices
7 years ago
admin-bar.php
7 years ago
admin-tab-advanced.php
7 years ago
admin-tab-logs.php
7 years ago
admin-tab-main.php
7 years ago
admin-tab-plugins.php
7 years ago
admin-tab-themes.php
7 years ago
advanced-premium-preview.php
7 years ago
advanced-premium.php
7 years ago
exclude-users.php
7 years ago
force-updates.php
7 years ago
reset-options.php
7 years ago
admin-tab-plugins.php
14 lines
| 1 | <?php if (!defined('ABSPATH')) die('No direct access.'); ?> |
| 2 | <h3><?php esc_html_e('Plugin Update Options', 'stops-core-theme-and-plugin-updates'); ?></h3> |
| 3 | <?php |
| 4 | $core_options = MPSUM_Updates_Manager::get_options('core'); |
| 5 | if (false === MPSUM_Admin_Plugins::can_update_plugins()) { |
| 6 | printf('<div class="error"><p><strong>%s</strong></p></div>', esc_html__('All plugin updates have been disabled.', 'stops-core-theme-and-plugin-updates')); |
| 7 | } |
| 8 | $plugin_table = new MPSUM_Plugins_List_Table($args = array('screen' => $slug, 'paged' => $paged, 'view' => $view)); |
| 9 | $plugin_table->prepare_items(); |
| 10 | $plugin_table->views(); |
| 11 | $plugin_table->display(); |
| 12 | ?> |
| 13 | <p class="submit" style="display:none"><input type="submit" name="submit" id="eum-save-settings" class="button button-primary" value="<?php esc_attr_e('Save', 'stops-core-theme-and-plugin-updates'); ?>"></p> |
| 14 |