File: /home/circuix/adrRc/wp-content/themes/estore/inc/admin/class-estore-dashboard.php
<?php
/**
* Estore_Dashboard Class.
*
* @author ThemeGrill
* @package estore
* @since 1.4.5
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
class Estore_Dashboard {
private static $instance;
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
private function __construct() {
$this->setup_hooks();
}
private function setup_hooks() {
add_action( 'admin_menu', array( $this, 'create_menu' ) );
}
public function create_menu() {
if ( is_child_theme() ) {
$theme = wp_get_theme()->parent();
} else {
$theme = wp_get_theme();
}
/* translators: %s: Theme Name. */
$theme_page_name = sprintf( esc_html__( '%s Options', 'estore' ), $theme->Name );
add_theme_page(
$theme_page_name,
$theme_page_name,
'edit_theme_options',
'estore-options',
array(
$this,
'option_page',
)
);
}
public function option_page() {
if ( is_child_theme() ) {
$theme = wp_get_theme()->parent();
} else {
$theme = wp_get_theme();
}
?>
<div class="wrap">
<div class="estore-header">
<h1>
<?php
/* translators: %s: Theme version. */
echo sprintf( esc_html__( 'eStore %s', 'estore' ), $theme->Version );
?>
</h1>
</div>
<div class="welcome-panel">
<div class="welcome-panel-content">
<h2><?php esc_html_e( 'Welcome to eStore!', 'estore' ); ?></h2>
<p class="about-description">
<?php
/* translators: %s: Theme Name. */
echo sprintf( esc_html__( 'Important links to get you started with %s', 'estore' ), $theme->Name );
?>
</p>
<div class="welcome-panel-column-container">
<div class="welcome-panel-column">
<h3><?php esc_html_e( 'Get Started', 'estore' ); ?></h3>
<a class="button button-primary button-hero"
href="<?php echo esc_url( 'https://docs.themegrill.com/estore/' ); ?>"
target="_blank"><?php esc_html_e( 'Learn Basics', 'estore' ); ?>
</a>
</div>
<div class="welcome-panel-column">
<h3><?php esc_html_e( 'Next Steps', 'estore' ); ?></h3>
<ul>
<li><?php printf( '<a target="_blank" href="%s" class="welcome-icon dashicons-media-text">' . esc_html__( 'Documentation', 'estore' ) . '</a>', esc_url( 'https://docs.themegrill.com/estore/' ) ); ?></li>
<li><?php printf( '<a target="_blank" href="%s" class="welcome-icon dashicons-layout">' . esc_html__( 'Starter Demos', 'estore' ) . '</a>', esc_url( 'https://themegrilldemos.com/estore-demos/' ) ); ?></li>
<li><?php printf( '<a target="_blank" href="%s" class="welcome-icon dashicons-migrate">' . esc_html__( 'Premium Version', 'estore' ) . '</a>', esc_url( 'https://themegrill.com/themes/estore/' ) ); ?></li>
</ul>
</div>
<div class="welcome-panel-column">
<h3><?php esc_html_e( 'Further Actions', 'estore' ); ?></h3>
<ul>
<li><?php printf( '<a target="_blank" href="%s" class="welcome-icon dashicons-businesswoman">' . esc_html__( 'Got theme support question?', 'estore' ) . '</a>', esc_url( 'https://wordpress.org/support/theme/estore/' ) ); ?></li>
<li><?php printf( '<a target="_blank" href="%s" class="welcome-icon dashicons-thumbs-up">' . esc_html__( 'Leave a review', 'estore' ) . '</a>', esc_url( 'https://wordpress.org/support/theme/estore/reviews/' ) ); ?></li>
</ul>
</div>
</div>
</div>
</div>
<?php
}
}
Estore_Dashboard::instance();