ehssl-admin-init.php
1 year ago
ehssl-admin-menu.php
2 days ago
ehssl-certificate-expiry-menu.php
2 days ago
ehssl-dashboard-menu.php
2 days ago
ehssl-settings-menu-old.php
1 year ago
ehssl-settings-menu.php
2 days ago
ehssl-ssl-management-menu.php
1 year ago
index.php
1 year ago
ehssl-settings-menu-old.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | class EHSSL_Settings_Menu_Old extends EHSSL_Admin_Menu |
| 4 | { |
| 5 | public $menu_page_slug = EHSSL_SETTINGS_MENU_SLUG; |
| 6 | |
| 7 | public function __construct() |
| 8 | { |
| 9 | $this->render_menu_page(); |
| 10 | } |
| 11 | |
| 12 | public function render_menu_page() |
| 13 | { |
| 14 | ?> |
| 15 | <div class="wrap"> |
| 16 | <h2><?php _e("HTTPS Redirection Settings", 'https-redirection') ?></h2> |
| 17 | <div class="notice notice-warning"> |
| 18 | <p> |
| 19 | <?php _e('The HTTPS Redirection settings have been upgraded and relocated to a new menu page titled <strong>Easy HTTPS & SSL</strong>. We have also added new features to enhance the plugin. Click the link below to access the new settings page.','https-redirection');?> |
| 20 | <br> |
| 21 | <br> |
| 22 | <a class="button-primary" href="admin.php?page=ehssl_settings"><?php _e('Go to the New Settings Page','https-redirection');?></a> |
| 23 | </p> |
| 24 | </div> |
| 25 | </div> |
| 26 | <?php |
| 27 | } |
| 28 | } |