PluginProbe ʕ •ᴥ•ʔ
Easy HTTPS Redirection (SSL) / 2.0.0
Easy HTTPS Redirection (SSL) v2.0.0
trunk 1.5 1.6 1.8 1.9.1 1.9.2 2.0.0 2.0.1
https-redirection / admin / ehssl-admin-menu.php
https-redirection / admin Last commit date
ehssl-admin-init.php 1 year ago ehssl-admin-menu.php 1 year ago ehssl-certificate-expiry-menu.php 1 year ago ehssl-dashboard-menu.php 1 year ago ehssl-settings-menu-old.php 1 year ago ehssl-settings-menu.php 1 year ago ehssl-ssl-management-menu.php 1 year ago index.php 1 year ago
ehssl-admin-menu.php
29 lines
1 <?php
2
3 /* Parent class for all admin menu classes */
4 abstract class EHSSL_Admin_Menu
5 {
6 /**
7 * Shows postbox for settings menu
8 *
9 * @param string $id css ID for postbox
10 * @param string $title title of the postbox section
11 * @param string $content the content of the postbox
12 */
13 public function postbox($id, $title, $content)
14 {
15 echo 'Do not use this old method. Use new HTML code instead.';
16 }
17
18 /**
19 * Display documentations links.
20 */
21 public function documentation_link_box(){
22 ?>
23 <div class="ehssl-blue-box">
24 You can view the <a href="https://www.tipsandtricks-hq.com/wordpress-easy-https-redirection-plugin" target="_blank">Easy HTTPS Redirection & SSL</a> plugin details on our site.
25 Check out our other <a href="https://www.tipsandtricks-hq.com/development-center" target="_blank">WordPress plugins</a>.
26 </div>
27 <?php
28 }
29 }