PluginProbe
Snippet Shortcodes / 4.2.3
Snippet Shortcodes v4.2.3
5.2.1 5.2 5.1.8 5.1.6 5.1.7 5.1.5 trunk 1.0 1.1 1.2 1.3 1.3.1 1.4 1.5 1.5.1 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 2.0 2.0.1 All 74 releases
shortcode-variables / includes / pages / page.help.php

page.help.php in Snippet Shortcodes 4.2.3, at includes/pages/page.help.php

91 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 <h3 class="postbox-header">
24 <span>
25 <?php echo __( 'Custom modifications / web development', SH_CD_SLUG ); ?>
26 </span>
27 </h3>
28 <div style="padding: 0px 15px 0px 15px">
29 <?php sh_cd_custom_notification_html(); ?>
30 </div>
31 </div>
32 <div class="postbox">
33 <h3 class="postbox-header">
34 <span>
35 <?php echo __( 'Documenation and Release notes', SH_CD_SLUG ); ?>
36 </span>
37 </h3>
38 <div style="padding: 0px 15px 0px 15px">
39 <p><?php echo __( 'You can find detailed documentation for this plugin at our site:', SH_CD_SLUG ); ?></p>
40 <p>
41 <a href="https://snippet-shortcodes.yeken.uk/" rel="noopener noreferrer" class="button" target="_blank"><?php echo __( 'View Documentation', SH_CD_SLUG ); ?></a>
42 <a href="https://github.com/alicolville/shortcode-variables/issues" class="button" rel="noopener noreferrer" target="_blank"><?php echo __( 'Release Notes', SH_CD_SLUG ); ?></a>
43 </p>
44 </div>
45 </div>
46 <div class="postbox">
47 <h3 class="postbox-header">
48 <span>
49 <?php echo __( 'Contact', SH_CD_SLUG ); ?>
50 </span>
51 </h3>
52 <div style="padding: 0px 15px 0px 15px">
53 <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>
54 </div>
55 </div>
56
57
58 </div>
59 <!-- .meta-box-sortables .ui-sortable -->
60
61 </div>
62 <!-- post-body-content -->
63
64 </div>
65 <!-- #post-body .metabox-holder .columns-2 -->
66
67 <br class="clear">
68 </div>
69 <!-- #poststuff -->
70
71 </div> <!-- .wrap -->
72 <?php
73
74 }
75
76 /**
77 * HTML for mention of custom work
78 */
79 function sh_cd_custom_notification_html() {
80 ?>
81
82 <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>
83 <p><strong><?php echo __( 'We provide fixed priced quotes.', SH_CD_SLUG ); ?></strong></p>
84 <p><a href="https://www.yeken.uk" rel="noopener noreferrer" target="_blank">YeKen.uk</a> /
85 <a href="https://profiles.wordpress.org/aliakro" rel="noopener noreferrer" target="_blank">WordPress Profile</a> /
86 <a href="mailto:email@yeken.uk" >email@yeken.uk</a></p>
87 <br clear="both"/>
88 <?php
89 }
90
91