| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die('Jog on!'); |
| 4 |
|
| 5 |
function sh_cd_help_page() { |
| 6 |
|
| 7 |
?> |
| 8 |
|
| 9 |
<div class="wrap ws-ls-admin-page"> |
| 10 |
|
| 11 |
<div id="icon-options-general" class="icon32"></div> |
| 12 |
|
| 13 |
<div id="poststuff"> |
| 14 |
|
| 15 |
<div id="post-body" class="metabox-holder columns-3"> |
| 16 |
|
| 17 |
<!-- main content --> |
| 18 |
<div id="post-body-content"> |
| 19 |
|
| 20 |
<div class="meta-box-sortables ui-sortable"> |
| 21 |
|
| 22 |
<div class="postbox"> |
| 23 |
<div class="postbox-header"> |
| 24 |
<h2 class="hndle"><span><?php echo __( 'Custom modifications / web development', SH_CD_SLUG ); ?> </span></h2> |
| 25 |
</div> |
| 26 |
<div style="padding: 0px 15px 0px 15px"> |
| 27 |
<?php sh_cd_custom_notification_html(); ?> |
| 28 |
</div> |
| 29 |
</div> |
| 30 |
<div class="postbox"> |
| 31 |
<div class="postbox-header"> |
| 32 |
<h2 class="hndle"><span><?php echo __( 'Documentation and Release notes', SH_CD_SLUG ); ?> </span></h2> |
| 33 |
</div> |
| 34 |
<div style="padding: 0px 15px 0px 15px"> |
| 35 |
<p><?php echo __( 'You can find detailed documentation for this plugin at our site:', SH_CD_SLUG ); ?></p> |
| 36 |
<p> |
| 37 |
<a href="https://snippet-shortcodes.yeken.uk/" rel="noopener noreferrer" class="button" target="_blank"><?php echo __( 'View Documentation', SH_CD_SLUG ); ?></a> |
| 38 |
<a href="https://github.com/alicolville/shortcode-variables/issues" class="button" rel="noopener noreferrer" target="_blank"><?php echo __( 'Release Notes', SH_CD_SLUG ); ?></a> |
| 39 |
</p> |
| 40 |
</div> |
| 41 |
</div> |
| 42 |
<div class="postbox"> |
| 43 |
<div class="postbox-header"> |
| 44 |
<h2 class="hndle"><span><?php echo __( 'Contact', SH_CD_SLUG ); ?> </span></h2> |
| 45 |
</div> |
| 46 |
<div style="padding: 0px 15px 0px 15px"> |
| 47 |
<p>If you have any questions or bugs to report, then please contact us at <a href="mailto:email@yeken.uk">email@yeken.uk</a>.</p> |
| 48 |
</div> |
| 49 |
</div> |
| 50 |
|
| 51 |
|
| 52 |
</div> |
| 53 |
<!-- .meta-box-sortables .ui-sortable --> |
| 54 |
|
| 55 |
</div> |
| 56 |
<!-- post-body-content --> |
| 57 |
|
| 58 |
</div> |
| 59 |
<!-- #post-body .metabox-holder .columns-2 --> |
| 60 |
|
| 61 |
<br class="clear"> |
| 62 |
</div> |
| 63 |
<!-- #poststuff --> |
| 64 |
|
| 65 |
</div> <!-- .wrap --> |
| 66 |
<?php |
| 67 |
|
| 68 |
} |
| 69 |
|
| 70 |
/** |
| 71 |
* HTML for mention of custom work |
| 72 |
*/ |
| 73 |
function sh_cd_custom_notification_html() { |
| 74 |
?> |
| 75 |
|
| 76 |
<p><img src="<?php echo plugins_url( 'assets/images/yeken-logo.png', __FILE__ ); ?>" width="100" height="100" style="margin-right:20px" align="left" /><?php echo __( 'If require plugin modifications to Meal Tracker, or need a new plugin built, or perhaps you need a developer to help you with your website then please don\'t hesitate get in touch!', SH_CD_SLUG ); ?></p> |
| 77 |
<p><strong><?php echo __( 'We provide fixed priced quotes.', SH_CD_SLUG ); ?></strong></p> |
| 78 |
<p><a href="https://www.yeken.uk" rel="noopener noreferrer" target="_blank">YeKen.uk</a> / |
| 79 |
<a href="https://profiles.wordpress.org/aliakro" rel="noopener noreferrer" target="_blank">WordPress Profile</a> / |
| 80 |
<a href="mailto:email@yeken.uk" >email@yeken.uk</a></p> |
| 81 |
<br clear="both"/> |
| 82 |
<?php |
| 83 |
} |
| 84 |
|
| 85 |
|