about.php
1 year ago
button-mce.php
1 year ago
faq.php
1 year ago
feedback.php
1 year ago
metabox.php
1 year ago
settings.php
1 year ago
whatsnew.php
1 year ago
about.php
27 lines
| 1 | <?php |
| 2 | function irp_ui_about() { |
| 3 | global $irp; |
| 4 | irp_ui_tracking(TRUE); |
| 5 | ?> |
| 6 | <div><?php $irp->Lang->P('AboutText')?></div> |
| 7 | <style> |
| 8 | ul li { |
| 9 | padding:2px; |
| 10 | } |
| 11 | </style> |
| 12 | <ul> |
| 13 | <li> |
| 14 | <img style="float:left; margin-right:10px;" src="<?php echo esc_url(IRP_PLUGIN_IMAGES)?>email.png" /> |
| 15 | <a href="mailto:support@intellywp.com">support@intellywp.com</a> |
| 16 | </li> |
| 17 | <li> |
| 18 | <img style="float:left; margin-right:10px;" src="<?php echo esc_url(IRP_PLUGIN_IMAGES)?>twitter.png" /> |
| 19 | <?php $irp->Utils->twitter('data443risk')?> |
| 20 | </li> |
| 21 | <li> |
| 22 | <img style="float:left; margin-right:10px;" src="<?php echo esc_url(IRP_PLUGIN_IMAGES)?>internet.png" /> |
| 23 | <a href="https://data443.com" target="_new">Data443.com</a> |
| 24 | </li> |
| 25 | </ul> |
| 26 | <?php |
| 27 | } |