# shortcode-variables/3.4.1/includes/pages/pages.help.php

Snippet Shortcodes, version 3.4.1. 85 lines.

- Page: https://pluginprobe.com/plugins/shortcode-variables/3.4.1/code/includes/pages/pages.help.php
- Raw: https://pluginprobe.com/plugins/shortcode-variables/3.4.1/raw/includes/pages/pages.help.php
- Modified: 2021-06-25T18:57:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shortcode-variables/3.4.1/code/includes/pages/pages.help.php#L10-L20`.

```php
<?php

defined('ABSPATH') or die('Jog on!');

function sh_cd_help_page() {

	?>

    <div class="wrap ws-ls-admin-page">

	<div id="icon-options-general" class="icon32"></div>

	<div id="poststuff">

		<div id="post-body" class="metabox-holder columns-3">

			<!-- main content -->
			<div id="post-body-content">

				<div class="meta-box-sortables ui-sortable">

                    <div class="postbox">
						<div class="postbox-header">
							<h2 class="hndle"><span><?php echo __( 'Custom modifications / web development', SH_CD_SLUG ); ?> </span></h2>
						</div>
                        <div style="padding: 0px 15px 0px 15px">
	                        <?php sh_cd_custom_notification_html(); ?>
                        </div>
                    </div>
					<div class="postbox">
						<div class="postbox-header">
							<h2 class="hndle"><span><?php echo __( 'Documentation and Release notes', SH_CD_SLUG ); ?> </span></h2>
						</div>
						<div style="padding: 0px 15px 0px 15px">
							<p><?php echo __( 'You can find detailed documentation for this plugin at our site:', SH_CD_SLUG ); ?></p>
							<p>
								<a href="https://mealtracker.yeken.uk" rel="noopener noreferrer"  class="button"  target="_blank"><?php echo __( 'View Documentation', SH_CD_SLUG ); ?></a>
								<a href="https://github.com/alicolville/meal-tracker/releases"  class="button"  rel="noopener noreferrer" target="_blank"><?php echo __( 'Release Notes', SH_CD_SLUG ); ?></a>
							</p>
						</div>
					</div>
                    <div class="postbox">
						<div class="postbox-header">
							<h2 class="hndle"><span><?php echo __( 'Contact', SH_CD_SLUG ); ?> </span></h2>
						</div>
                        <div style="padding: 0px 15px 0px 15px">
                            <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>
                        </div>
                    </div>


				</div>
				<!-- .meta-box-sortables .ui-sortable -->

			</div>
			<!-- post-body-content -->

		</div>
		<!-- #post-body .metabox-holder .columns-2 -->

		<br class="clear">
	</div>
	<!-- #poststuff -->

</div> <!-- .wrap -->
<?php

}

/**
 * HTML for mention of custom work
 */
function sh_cd_custom_notification_html() {
	?>

	<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>
	<p><strong><?php echo __( 'We provide fixed priced quotes.', SH_CD_SLUG ); ?></strong></p>
	<p><a href="https://www.yeken.uk" rel="noopener noreferrer" target="_blank">YeKen.uk</a> /
		<a href="https://profiles.wordpress.org/aliakro" rel="noopener noreferrer" target="_blank">WordPress Profile</a> /
		<a href="mailto:email@yeken.uk" >email@yeken.uk</a></p>
	<br clear="both"/>
	<?php
}


```
