Files
CHIEFSOFT\ameye e9e5c0546c first commit
2023-11-30 13:20:54 -05:00

158 lines
4.3 KiB
PHP

<?php
/**
* Enwoo admin notify
*
*/
if ( !defined( 'ABSPATH' ) ) {
exit;
}
if ( !class_exists( 'Enwoo_Notify_Admin' ) ) :
/**
* The Enwoo admin notify
*/
class Enwoo_Notify_Admin {
/**
* Setup class.
*
*/
public function __construct() {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
add_action( 'admin_notices', array( $this, 'admin_notices' ), 99 );
add_action( 'wp_ajax_enwoo_dismiss_notice', array( $this, 'dismiss_nux' ) );
add_action( 'admin_menu', array( $this, 'add_menu' ), 5 );
}
/**
* Enqueue scripts.
*
*/
public function enqueue_scripts() {
global $wp_customize;
if ( isset( $wp_customize ) || envo_extra_is_activated() ) {
return;
}
wp_enqueue_style( 'enwoo-admin', get_template_directory_uri() . '/css/admin/admin.css', '', '1' );
wp_enqueue_script( 'enwoo-admin', get_template_directory_uri() . '/js/admin/admin.js', array( 'jquery', 'updates' ), '1', 'all' );
$enwoo_notify = array(
'nonce' => wp_create_nonce( 'enwoo_notice_dismiss' )
);
wp_localize_script( 'enwoo-admin', 'enwooNUX', $enwoo_notify );
}
/**
* Output admin notices.
*
*/
public function admin_notices() {
global $pagenow;
if ( ( 'themes.php' === $pagenow ) && isset( $_GET[ 'page' ] ) && ( 'enwoo' === $_GET[ 'page' ] ) || true === (bool) get_option( 'enwoo_notify_dismissed' ) || envo_extra_is_activated() ) {
return;
}
?>
<div class="notice notice-info enwoo-notice-nux is-dismissible">
<div class="notice-content">
<?php if ( !envo_extra_is_activated() && current_user_can( 'install_plugins' ) && current_user_can( 'activate_plugins' ) ) : ?>
<h2>
<?php
/* translators: %s: Theme name */
printf( esc_html__( 'Thank you for installing %s.', 'enwoo' ), '<strong>Enwoo</strong>' );
?>
</h2>
<p>
<?php
/* translators: %s: Plugin name string */
printf( esc_html__( 'To take full advantage of all the features this theme has to offer, please install and activate the %s plugin.', 'enwoo' ), '<strong>Envo Extra</strong>' );
?>
</p>
<p>
<a href="<?php echo esc_url( admin_url( 'themes.php?page=enwoo' ) ); ?>" class="button button-primary button-hero">
<?php
/* translators: %s: Theme name */
printf( esc_html__( 'Get started with %s', 'enwoo' ), 'Enwoo' );
?>
</a>
</p>
<?php endif; ?>
</div>
</div>
<?php
}
public function add_menu() {
if ( isset( $wp_customize ) || envo_extra_is_activated() ) {
return;
}
add_theme_page(
'Enwoo', 'Enwoo', 'edit_theme_options', 'enwoo', array( $this, 'admin_page' )
);
}
public function admin_page() {
if ( envo_extra_is_activated() ) {
return;
}
?>
<div class="notice notice-info sf-notice-nux">
<span class="sf-icon">
<?php echo '<img src="' . esc_url( get_template_directory_uri() ) . '/img/enwoo-logo.png" width="250" />'; ?>
</span>
<div class="notice-content">
<?php if ( !envo_extra_is_activated() && current_user_can( 'install_plugins' ) && current_user_can( 'activate_plugins' ) ) : ?>
<h2>
<?php
/* translators: %s: Theme name */
printf( esc_html__( 'Thank you for installing %s.', 'enwoo' ), '<strong>Enwoo</strong>' );
?>
</h2>
<p>
<?php
/* translators: %s: Plugin name string */
printf( esc_html__( 'To take full advantage of all the features this theme has to offer, please install and activate the %s plugin.', 'enwoo' ), '<strong>Envo Extra</strong>' );
?>
</p>
<p><?php Enwoo_Plugin_Install::install_plugin_button( 'envo-extra', 'envo-extra.php', 'Envo Extra', array( 'sf-nux-button' ), __( 'Activated', 'enwoo' ), __( 'Activate', 'enwoo' ), __( 'Install', 'enwoo' ) ); ?></p>
<?php endif; ?>
</div>
</div>
<?php
}
/**
* AJAX dismiss notice.
*
* @since 2.2.0
*/
public function dismiss_nux() {
$nonce = !empty( $_POST[ 'nonce' ] ) ? sanitize_text_field( wp_unslash( $_POST[ 'nonce' ] ) ) : false;
if ( !$nonce || !wp_verify_nonce( $nonce, 'enwoo_notice_dismiss' ) || !current_user_can( 'manage_options' ) ) {
die();
}
update_option( 'enwoo_notify_dismissed', true );
}
}
endif;
return new Enwoo_Notify_Admin();