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-themes.php
13 lines
| 1 | <?php if (!defined('ABSPATH')) die('No direct access.'); ?> |
| 2 | <h3><?php esc_html_e('Theme update options', 'stops-core-theme-and-plugin-updates'); ?></h3> |
| 3 | <?php |
| 4 | if (false === MPSUM_Admin_Themes::can_update_themes()) { |
| 5 | printf('<div class="error"><p><strong>%s</strong></p></div>', esc_html__('All theme updates have been disabled.', 'stops-core-theme-and-plugin-updates')); |
| 6 | } |
| 7 | do_action('eum_themes_tab_header'); |
| 8 | $theme_table = new MPSUM_Themes_List_Table($args = array('screen' => $slug, 'paged' => $paged, 'view' => $view)); |
| 9 | $theme_table->prepare_items(); |
| 10 | $theme_table->views(); |
| 11 | $theme_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> |