<?php
/**
* Register and enqueue a custom stylesheet in the WordPress admin.
*/
function bppiv_enqueue_custom_admin_style() {
wp_register_style( 'bppiv_admin_custom_css', plugin_dir_url(__FILE__) . 'style.css', false, '1.0.0' );
wp_enqueue_style( 'bppiv_admin_custom_css' );
}
add_action( 'admin_enqueue_scripts', 'bppiv_enqueue_custom_admin_style' );
//-----------------------------------------------
// Helps
//-----------------------------------------------
add_action('admin_menu', 'bppiv_support_page');
function bppiv_support_page()
{
add_submenu_page('edit.php?post_type=bppiv-image-viewer', 'Help ', 'Help', 'manage_options', 'bppiv-support', 'bppiv_support_page_callback');
}
function bppiv_support_page_callback()
{
?>
<div class="bplugins-container">
<div class="row">
<div class="bplugins-features">
<div class="col col-12">
<div class="bplugins-feature center">
<div style="background:white;overflow:hidden;">
<div style="width:128px;heigh:128px;overflow:hidden;float:left;">
<img src="https://ps.w.org/panorama/assets/icon-256x256.png?rev=2514753" alt="Logo" width="100" height="100">
</div>
<div style="float:left; overflow:hidden;text-align:left;">
<h1><?php echo esc_html__('Thanks for Installing Panorama Viewer Plugin.', 'panorama-viewer'); ?></h1>
<p> <?php echo esc_html__('Please follow the links below to get some helpful resources.', 'panorama-viewer'); ?></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bplugins-container">
<div class="row">
<div class="bplugins-features">
<div class="col col-4">
<div class="bplugins-feature center">
<i class="fa fa-life-ring"></i>
<h3>Need any Assistance?</h3>
<p>Our Expert Support Team is always ready to help you out promptly.</p>
<a href="https://bplugins.com/support/" target="_blank" class="button
button-primary">Contact Support</a>
</div>
</div>
<div class="col col-4">
<div class="bplugins-feature center">
<i class="fa fa-file-text"></i>
<h3>Looking for Documentation?</h3>
<p>We have detailed documentation on every aspects of the plugin.</p>
<a href="https://wordpress.org/plugins/panorama/#description" target="_blank" class="button button-primary">Documentation</a>
</div>
</div>
<div class="col col-4">
<div class="bplugins-feature center">
<i class="fa fa-thumbs-up"></i>
<h3>Liked This Plugin?</h3>
<p>Glad to know that, you can support us by leaving a 5 ⭐ rating.</p>
<a href="https://wordpress.org/support/plugin/panorama/reviews/#new-post" target="_blank" class="button
button-primary">Rate the Plugin</a>
</div>
</div>
</div>
</div>
</div>
<div class="bplugins-container">
<div class="row">
<div class="bplugins-features">
<div class="col col-12">
<div class="bplugins-feature center">
<h1>Video Tutorials</h1><br/>
<div class="embed-container"><iframe width="100%" height="700px" src="https://www.youtube.com/embed/tLX7Dp7dmXQ" frameborder="0"
allowfullscreen></iframe></div>
</div>
</div>
</div>
</div>
</div>
<?php
}
|