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
38 lines
| 1 | <?php |
| 2 | function tcm_ui_rate_us() { |
| 3 | $rate_text = sprintf(__('Thank you for using <a href="%1$s" target="_blank">Easy Digital Downloads</a>! Please <a href="%2$s" target="_blank">rate us</a> on <a href="%2$s" target="_blank">WordPress.org</a>', 'edd'), |
| 4 | 'https://easydigitaldownloads.com', |
| 5 | 'https://wordpress.org/support/view/plugin-reviews/easy-digital-downloads?rate=5#postform' |
| 6 | ); |
| 7 | return $rate_text; |
| 8 | } |
| 9 | |
| 10 | function tcm_ui_about() { |
| 11 | global $tcm; |
| 12 | |
| 13 | $tcm->Options->pushSuccessMessage($tcm->Lang->L('AboutNotice')); |
| 14 | $tcm->Options->writeMessages(); |
| 15 | |
| 16 | ?> |
| 17 | <div><?php $tcm->Lang->P('AboutText')?></div> |
| 18 | <style> |
| 19 | ul li { |
| 20 | padding:2px; |
| 21 | } |
| 22 | </style> |
| 23 | <ul> |
| 24 | <li> |
| 25 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>email.png" /> |
| 26 | <a href="mailto:aleste@intellywp.com">Email aleste@intellywp.com</a> |
| 27 | </li> |
| 28 | <li> |
| 29 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>twitter.png" /> |
| 30 | <a href="https://twitter.com/intellywp" target="_new">Twitter @intellywp</a> |
| 31 | </li> |
| 32 | <li> |
| 33 | <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>internet.png" /> |
| 34 | <a href="http://www.intellywp.com" target="_new">Website intellywp.com</a> |
| 35 | </li> |
| 36 | </ul> |
| 37 | <?php |
| 38 | } |