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-logs.php
16 lines
| 1 | <?php if (!defined('ABSPATH')) die('No direct access.'); ?> |
| 2 | <div id="result"></div> |
| 3 | <h3><?php esc_html_e('Clear logs', 'stops-core-theme-and-plugin-updates'); ?></h3> |
| 4 | <?php |
| 5 | printf('<p class="submit"><input type="submit" name="clear-log" id="clear-logs" class="button button-primary" value="%1$s" /></p>', esc_attr__('Clear now', 'stops-core-theme-and-plugin-updates')); |
| 6 | do_action('eum_logs'); |
| 7 | ?> |
| 8 | <h3><?php esc_html_e('Update logs', 'stops-core-theme-and-plugin-updates'); ?></h3> |
| 9 | <p><?php esc_html_e('Please note that this feature does not necessarily work for premium themes and plugins.', 'stops-core-theme-and-plugin-updates');?></p> |
| 10 | <?php |
| 11 | $core_options = MPSUM_Updates_Manager::get_options('core'); |
| 12 | $logs_table = new MPSUM_Logs_List_Table($args = array('paged' => $paged, 'view' => $view, 'status' => $status, 'action_type' => $action_type, 'type' => $type, 'm' => $m, 'is_search' => $is_search, 'search_term' => $search_term, 'order' => $order)); |
| 13 | $logs_table->prepare_items(); |
| 14 | $logs_table->views(); |
| 15 | $logs_table->display(); |
| 16 |