PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
<?php /** * What's New Class * * @since 2.7.0 */ class WPUF_Whats_New { /** * Initialize the actions */ public function __construct() { add_action( 'admin_menu', [ $this, 'register_menu' ] ); add_action( 'admin_notices', [ $this, 'admin_notice' ] ); add_action( 'wp_ajax_wpuf_whats_new_dismiss', [ $this, 'dismiss_notice' ] ); } /** * Check if a changelog is unread * * @return bool */ public function has_new() { $options = $this->get_option(); if ( !current_user_can( 'manage_options' ) ) { return false; } if ( array_key_exists( WPUF_VERSION, $options ) && $options[WPUF_VERSION] === true ) { return false; } return true; } /** * Mark the current plugin changelog as read * * @return void */ public function mark_read() { $options = $this->get_option(); $options[WPUF_VERSION] = true; update_option( 'wpuf_whats_new', $options ); } /** * Get the changelog history * * @return array */ public function get_option() { return get_option( 'wpuf_whats_new', [] ); } /** * Register the menu page * * @return void */ public function register_menu() { add_submenu_page( null, __( 'Whats New', 'wp-user-frontend' ), __( 'Whats New', 'wp-user-frontend' ), 'manage_options', 'whats-new-wpuf', [ $this, 'menu_page' ] ); } /** * Render the menu page * * @return void */ public function menu_page() { $this->mark_read(); include_once WPUF_ROOT . '/admin/html/whats-new.php'; } /** * Show the admin notice if applicable * * @return void */ public function admin_notice() { if ( !$this->has_new() ) { return; } wp_enqueue_script( 'wp-util' ); ?> <div class="notice notice-success wpuf-whats-new-notice free"> <div class="wpuf-whats-new-icon"> <img src="<?php echo esc_url( WPUF_ASSET_URI ) . '/images/icon-128x128.png'; ?>" alt="WPUF Icon"> </div> <div class="wpuf-whats-new-text"> <p><strong><?php printf( esc_html( __( 'WP User Frontend - Version %s', 'wp-user-frontend' ) ), esc_html( WPUF_VERSION ) ); ?></strong></p> <p><?php printf( wp_kses_post( __( 'Welcome to the new version of WP User Frontend. See what\'s been changed in the <strong>%s</strong> version.', 'wp-user-frontend' ) ), esc_html( WPUF_VERSION ) ); ?></strong></p> </div> <div class="wpuf-whats-new-actions"> <a href="<?php echo esc_url( admin_url( 'index.php?page=whats-new-wpuf' ) ); ?>" class="button button-primary"><?php esc_html_e( 'What\'s New?', 'wp-user-frontend' ); ?></a> <button type="button" class="notice-dismiss"><span class="screen-reader-text"><?php esc_html_e( 'Dismiss this notice.', 'wp-user-frontend' ); ?></span></button> </div> </div> <script type="text/javascript"> jQuery(function($) { var wrap = $('.wpuf-whats-new-notice.free'); wrap.on('click', 'button.notice-dismiss', function(event) { event.preventDefault(); wp.ajax.send( 'wpuf_whats_new_dismiss' ); wrap.remove(); }); }); </script> <?php } /** * Mark the notice as dimissed via ajax * * @return void */ public function dismiss_notice() { $this->mark_read(); wp_send_json_success(); } }
[-] class-frontend-render-form.php
[edit]
[-] class-dokan-integration.php
[edit]
[-] class-frontend-form-post.php
[edit]
[-] class-wc-vendors-integration.php
[edit]
[-] countries-state.php
[edit]
[-] class-wcmp-integration.php
[edit]
[-] class-upgrades.php
[edit]
[+]
..
[+]
log
[-] class-pro-upgrades.php
[edit]
[-] class-list-table-subscribers.php
[edit]
[-] class-form-preview.php
[edit]
[-] class-privacy.php
[edit]
[-] class-field-manager.php
[edit]
[-] setup-wizard.php
[edit]
[-] class-form-manager.php
[edit]
[-] class-form.php
[edit]
[-] class-billing-address.php
[edit]
[-] class-user.php
[edit]
[-] countries-formated.php
[edit]
[-] class-acf.php
[edit]
[-] class-user-subscription.php
[edit]
[-] class-whats-new.php
[edit]
[+]
upgrades
[-] class-installer.php
[edit]
[-] class-customizer.php
[edit]
[+]
free
[-] class-login-widget.php
[edit]
[+]
fields
[-] countries.php
[edit]
[-] class-gutenblock.php
[edit]