about.php
11 years ago
editor.php
11 years ago
feedback.php
11 years ago
manager.php
11 years ago
metabox.php
11 years ago
settings.php
11 years ago
about.php
30 lines
| 1 | <?php |
| 2 | function tcm_ui_about() { |
| 3 | global $tcm; |
| 4 | |
| 5 | $tcm->Options->pushSuccessMessage($tcm->Lang->L('AboutNotice')); |
| 6 | $tcm->Options->writeMessages(); |
| 7 | |
| 8 | ?> |
| 9 | <div><?php $tcm->Lang->P('AboutText')?></div> |
| 10 | <style> |
| 11 | ul li { |
| 12 | padding:2px; |
| 13 | } |
| 14 | </style> |
| 15 | <ul> |
| 16 | <li> |
| 17 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>email.png" /> |
| 18 | <a href="mailto:aleste@intellywp.com">aleste@intellywp.com</a> |
| 19 | </li> |
| 20 | <li> |
| 21 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>twitter.png" /> |
| 22 | <?php $tcm->Utils->twitter('intellywp')?> |
| 23 | </li> |
| 24 | <li> |
| 25 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>internet.png" /> |
| 26 | <a href="http://www.intellywp.com" target="_new">IntellyWP.com</a> |
| 27 | </li> |
| 28 | </ul> |
| 29 | <?php |
| 30 | } |