File: /www/wwwroot/www.molinta.com/wp-content/themes/medical-store/includes/getstart/getstart.php
<?php
//about theme info
add_action( 'admin_menu', 'medical_store_gettingstarted' );
function medical_store_gettingstarted() {
add_theme_page( esc_html__('Medical Store', 'medical-store'), esc_html__('Medical Store', 'medical-store'), 'edit_theme_options', 'medical_store_about', 'medical_store_mostrar_guide');
}
// Add a Custom CSS file to WP Admin Area
function medical_store_admin_theme_style() {
wp_enqueue_style('medical-store-custom-admin-style', esc_url(get_template_directory_uri()) . '/includes/getstart/getstart.css');
wp_enqueue_script('medical-store-tabs', esc_url(get_template_directory_uri()) . '/includes/getstart/js/tab.js');
wp_enqueue_style( 'font-awesome-css', get_template_directory_uri().'/assets/css/fontawesome-all.css' );
}
add_action('admin_enqueue_scripts', 'medical_store_admin_theme_style');
// Changelog
if ( ! defined( 'MEDICAL_STORE_CHANGELOG_URL' ) ) {
define( 'MEDICAL_STORE_CHANGELOG_URL', get_template_directory() . '/readme.txt' );
}
function medical_store_changelog_screen() {
global $wp_filesystem;
$medical_store_changelog_file = apply_filters( 'medical_store_changelog_file', MEDICAL_STORE_CHANGELOG_URL );
if ( $medical_store_changelog_file && is_readable( $medical_store_changelog_file ) ) {
WP_Filesystem();
$medical_store_changelog = $wp_filesystem->get_contents( $medical_store_changelog_file );
$medical_store_changelog_list = medical_store_parse_changelog( $medical_store_changelog );
echo wp_kses_post( $medical_store_changelog_list );
}
}
function medical_store_parse_changelog( $medical_store_content ) {
$medical_store_content = explode ( '== ', $medical_store_content );
$medical_store_changelog_isolated = '';
foreach ( $medical_store_content as $key => $medical_store_value ) {
if (strpos( $medical_store_value, 'Changelog ==') === 0) {
$medical_store_changelog_isolated = str_replace( 'Changelog ==', '', $medical_store_value );
}
}
$medical_store_changelog_array = explode( '= ', $medical_store_changelog_isolated );
unset( $medical_store_changelog_array[0] );
$medical_store_changelog = '<div class="changelog">';
foreach ( $medical_store_changelog_array as $medical_store_value) {
$medical_store_value = preg_replace( '/\n+/', '</span><span>', $medical_store_value );
$medical_store_value = '<div class="block"><span class="heading">= ' . $medical_store_value . '</span></div><hr>';
$medical_store_changelog .= str_replace( '<span></span>', '', $medical_store_value );
}
$medical_store_changelog .= '</div>';
return wp_kses_post( $medical_store_changelog );
}
//guidline for about theme
function medical_store_mostrar_guide() {
//custom function about theme customizer
$medical_store_return = add_query_arg( array()) ;
$medical_store_theme = wp_get_theme( 'medical-store' );
?>
<div class="top-head">
<div class="top-title">
<h2><?php esc_html_e( 'Medical Store', 'medical-store' ); ?></h2>
</div>
<div class="top-right">
<span class="version"><?php esc_html_e( 'Version', 'medical-store' ); ?>: <?php echo esc_html($medical_store_theme['Version']);?></span>
</div>
</div>
<div class="inner-cont">
<div class="tab-sec">
<div class="tab">
<button class="tablinks" onclick="medical_store_open_tab(event, 'wpelemento_importer_editor')"><?php esc_html_e( 'Setup With Elementor', 'medical-store' ); ?></button>
<button class="tablinks" onclick="medical_store_open_tab(event, 'setup_customizer')"><?php esc_html_e( 'Setup With Customizer', 'medical-store' ); ?></button>
<button class="tablinks" onclick="medical_store_open_tab(event, 'changelog_cont')"><?php esc_html_e( 'Changelog', 'medical-store' ); ?></button>
</div>
<div id="wpelemento_importer_editor" class="tabcontent open">
<?php if(!class_exists('WPElemento_Importer_ThemeWhizzie')){
$medical_store_plugin_ins = Medical_Store_Plugin_Activation_WPElemento_Importer::get_instance();
$medical_store_actions = $medical_store_plugin_ins->medical_store_recommended_actions;
?>
<div class="medical-store-recommended-plugins ">
<div class="medical-store-action-list">
<?php if ($medical_store_actions): foreach ($medical_store_actions as $medical_store_key => $medical_store_actionValue): ?>
<div class="medical-store-action" id="<?php echo esc_attr($medical_store_actionValue['id']);?>">
<div class="action-inner plugin-activation-redirect">
<h3 class="action-title"><?php echo esc_html($medical_store_actionValue['title']); ?></h3>
<div class="action-desc"><?php echo esc_html($medical_store_actionValue['desc']); ?></div>
<?php echo wp_kses_post($medical_store_actionValue['link']); ?>
</div>
</div>
<?php endforeach;
endif; ?>
</div>
</div>
<?php }else{ ?>
<div class="tab-outer-box">
<h3><?php esc_html_e('Welcome to WPElemento Theme!', 'medical-store'); ?></h3>
<p><?php esc_html_e('Click on the quick start button to import the demo.', 'medical-store'); ?></p>
<div class="info-link">
<a href="<?php echo esc_url( admin_url('admin.php?page=wpelementoimporter-wizard') ); ?>"><?php esc_html_e('Quick Start', 'medical-store'); ?></a>
</div>
</div>
<?php } ?>
</div>
<div id="setup_customizer" class="tabcontent">
<div class="tab-outer-box">
<div class="lite-theme-inner">
<h3><?php esc_html_e('Theme Customizer', 'medical-store'); ?></h3>
<p><?php esc_html_e('To begin customizing your website, start by clicking "Customize".', 'medical-store'); ?></p>
<div class="info-link">
<a target="_blank" href="<?php echo esc_url( admin_url('customize.php') ); ?>"><?php esc_html_e('Customizing', 'medical-store'); ?></a>
</div>
<hr>
<h3><?php esc_html_e('Help Docs', 'medical-store'); ?></h3>
<p><?php esc_html_e('The complete procedure to configure and manage a WordPress Website from the beginning is shown in this documentation .', 'medical-store'); ?></p>
<div class="info-link">
<a href="<?php echo esc_url( MEDICAL_STORE_FREE_THEME_DOC ); ?>" target="_blank"><?php esc_html_e('Documentation', 'medical-store'); ?></a>
</div>
<hr>
<h3><?php esc_html_e('Need Support?', 'medical-store'); ?></h3>
<p><?php esc_html_e('Our dedicated team is well prepared to help you out in case of queries and doubts regarding our theme.', 'medical-store'); ?></p>
<div class="info-link">
<a href="<?php echo esc_url( MEDICAL_STORE_SUPPORT ); ?>" target="_blank"><?php esc_html_e('Support Forum', 'medical-store'); ?></a>
</div>
<hr>
<h3><?php esc_html_e('Reviews & Testimonials', 'medical-store'); ?></h3>
<p> <?php esc_html_e('All the features and aspects of this WordPress Theme are phenomenal. I\'d recommend this theme to all.', 'medical-store'); ?></p>
<div class="info-link">
<a href="<?php echo esc_url( MEDICAL_STORE_REVIEW ); ?>" target="_blank"><?php esc_html_e('Review', 'medical-store'); ?></a>
</div>
<hr>
<div class="link-customizer">
<h3><?php esc_html_e( 'Link to customizer', 'medical-store' ); ?></h3>
<div class="first-row">
<div class="row-box">
<div class="row-box1">
<span class="dashicons dashicons-buddicons-buddypress-logo"></span><a href="<?php echo esc_url( admin_url('customize.php?autofocus[control]=custom_logo') ); ?>" target="_blank"><?php esc_html_e('Upload your logo','medical-store'); ?></a>
</div>
<div class="row-box2">
<span class="dashicons dashicons-menu"></span><a href="<?php echo esc_url( admin_url('customize.php?autofocus[panel]=nav_menus') ); ?>" target="_blank"><?php esc_html_e('Menus','medical-store'); ?></a>
</div>
</div>
<div class="row-box">
<div class="row-box1">
<span class="dashicons dashicons-align-center"></span><a href="<?php echo esc_url( admin_url('customize.php?autofocus[section]=header_image') ); ?>" target="_blank"><?php esc_html_e('Header Image','medical-store'); ?></a>
</div>
<div class="row-box2">
<span class="dashicons dashicons-screenoptions"></span><a href="<?php echo esc_url( admin_url('customize.php?autofocus[panel]=widgets') ); ?>" target="_blank"><?php esc_html_e('Footer Widget','medical-store'); ?></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="changelog_cont" class="tabcontent">
<div class="tab-outer-box">
<?php medical_store_changelog_screen(); ?>
</div>
</div>
</div>
<div class="inner-side-content">
<h2><?php esc_html_e('Premium Theme', 'medical-store'); ?></h2>
<div class="tab-outer-box">
<img src="<?php echo esc_url(get_template_directory_uri()); ?>/screenshot.png" />
<h3><?php esc_html_e('Medical Store Theme', 'medical-store'); ?></h3>
<div class="iner-sidebar-pro-btn">
<span class="premium-btn"><a href="<?php echo esc_url( MEDICAL_STORE_BUY_NOW ); ?>" target="_blank"><?php esc_html_e('Buy Premium', 'medical-store'); ?></a>
</span>
<span class="demo-btn"><a href="<?php echo esc_url( MEDICAL_STORE_LIVE_DEMO ); ?>" target="_blank"><?php esc_html_e('Live Demo', 'medical-store'); ?></a>
</span>
<span class="doc-btn"><a href="<?php echo esc_url( MEDICAL_STORE_THEME_BUNDLE ); ?>" target="_blank"><?php esc_html_e('Theme Bundle', 'medical-store'); ?></a>
</span>
</div>
<hr>
<div class="premium-coupon">
<div class="premium-features">
<h3><?php esc_html_e('premium Features', 'medical-store'); ?></h3>
<ul>
<li><?php esc_html_e( 'Multilingual', 'medical-store' ); ?></li>
<li><?php esc_html_e( 'Drag and drop features', 'medical-store' ); ?></li>
<li><?php esc_html_e( 'Zero Coding Required', 'medical-store' ); ?></li>
<li><?php esc_html_e( 'Mobile Friendly Layout', 'medical-store' ); ?></li>
<li><?php esc_html_e( 'Responsive Layout', 'medical-store' ); ?></li>
<li><?php esc_html_e( 'Unique Designs', 'medical-store' ); ?></li>
</ul>
</div>
<div class="coupon-box">
<h3><?php esc_html_e('Use Coupon Code', 'medical-store'); ?></h3>
<a class="coupon-btn" href="<?php echo esc_url( MEDICAL_STORE_BUY_NOW ); ?>" target="_blank"><?php esc_html_e('UPGRADE NOW', 'medical-store'); ?></a>
<div class="coupon-container">
<h3><?php esc_html_e( 'elemento20', 'medical-store' ); ?></h3>
</div>
</div>
</div>
</div>
</div>
</div>
<?php } ?>