dashboard-constant-warning.php
5 years ago
horizontal-notice.php
5 years ago
thanks-for-using-main-dash.php
5 years ago
thanks-for-using-main-dash.php
40 lines
| 1 | <?php if (!defined('EASY_UPDATES_MANAGER_MAIN_PATH')) die('No direct access allowed'); ?> |
| 2 | |
| 3 | <div id="easy-updates-manager-dashnotice" class="updated"> |
| 4 | <?php |
| 5 | global $pagenow; |
| 6 | if ('index.php' === $pagenow && !isset($_GET['page'])) { |
| 7 | $ajax_action = 'dismiss_dash_notice_until'; |
| 8 | $time = 12; |
| 9 | } else { |
| 10 | $ajax_action = 'dismiss_eum_notice_until'; |
| 11 | $time = 6; |
| 12 | } |
| 13 | ?> |
| 14 | <div style="float:right;"><a href="#" onclick="jQuery('#easy-updates-manager-dashnotice').slideUp(); jQuery.post(ajaxurl, {action: 'easy_updates_manager_ajax', subaction: '<?php echo esc_js($ajax_action); ?>', nonce: '<?php echo wp_create_nonce('easy-updates-manager-ajax-nonce'); ?>' });"><?php printf(__('Dismiss (for %s months)', 'stops-core-theme-and-plugin-updates'), absint($time)); ?></a></div> |
| 15 | |
| 16 | <h3><?php _e("Thank you for installing Easy Updates Manager!", 'stops-core-theme-and-plugin-updates'); ?></h3> |
| 17 | <div id="easy-updates-manager-dashnotice-wrapper"> |
| 18 | <a href="<?php echo apply_filters('easy_updates_manager_com_link', 'https://easyupdatesmanager.com/'); ?>"><img style="border: 0px; float: right; height: 130px; padding-bottom: 25px;" alt="<?php _e('Easy Updates Manager', 'stops-core-theme-and-plugin-updates'); ?>" src="<?php echo EASY_UPDATES_MANAGER_URL.'images/notices/eum-notice-logo-150.png'; ?>"></a> |
| 19 | <p> |
| 20 | <?php echo htmlspecialchars(__('Super-charge and secure your WordPress site with our other top plugins:', 'stops-core-theme-and-plugin-updates')); ?> |
| 21 | </p> |
| 22 | <p> |
| 23 | <?php printf(__('%s simplifies backups and restoration. It is the world’s highest ranking and most popular scheduled backup plugin, with over a million currently-active installs.', 'stops-core-theme-and-plugin-updates'), '<strong>'.$easy_updates_manager->easy_updates_manager_url('https://updraftplus.com/', 'UpdraftPlus', '', '', true).'</strong>'); ?> |
| 24 | </p> |
| 25 | |
| 26 | <p> |
| 27 | <?php printf(__('%s is a highly efficient way to manage, optimize, update and backup multiple websites from one place.', 'stops-core-theme-and-plugin-updates'), '<strong>'.$easy_updates_manager->easy_updates_manager_url('https://updraftplus.com/updraftcentral/', 'UpdraftCentral', '', '', true).'</strong>'); ?> |
| 28 | </p> |
| 29 | |
| 30 | <p> |
| 31 | <?php printf(__('%s makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed.', 'stops-core-theme-and-plugin-updates'), '<strong>'.$easy_updates_manager->easy_updates_manager_url('https://getwpo.com/', __('WP-Optimize', 'stops-core-theme-and-plugin-updates'), '', '', true).'</strong>'); ?> |
| 32 | </p> |
| 33 | |
| 34 | <p> |
| 35 | <strong><?php $easy_updates_manager->easy_updates_manager_url('https://www.simbahosting.co.uk/s3/shop/', __('Premium WooCommerce extensions', 'stops-core-theme-and-plugin-updates')); ?></strong> |
| 36 | </p> |
| 37 | |
| 38 | </div> |
| 39 | </div> |
| 40 |