Sh3ll
OdayForums


Server : LiteSpeed
System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : claqxcrl ( 523)
PHP Version : 8.1.32
Disable Function : NONE
Directory :  /home/claqxcrl/public_html/wp-content/plugins/af-companion/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/claqxcrl/public_html/wp-content/plugins/af-companion/inc/notice-upgrade.php
<?php
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;


// Exit if accessed directly.
defined('ABSPATH') || exit;

class AFTC_Notice
{
    public $name;
    public $type;
    public $dismiss_url;
    public $temporary_dismiss_url;
    public $pricing_url;
    public $current_user_id;

    /**
     * The constructor.
     *
     * @param string $name Notice Name.
     * @param string $type Notice type.
     * @param string $dismiss_url Notice permanent dismiss URL.
     * @param string $temporary_dismiss_url Notice temporary dismiss URL.
     *
     * @since 1.4.7
     *
     */
    public function __construct($name, $type, $dismiss_url, $temporary_dismiss_url)
    {
        $this->name = $name;
        $this->type = $type;
        $this->dismiss_url = $dismiss_url;
        $this->temporary_dismiss_url = $temporary_dismiss_url;
        $this->pricing_url = 'https://afthemes.com/all-themes-plan/';
        $this->current_user_id = get_current_user_id();

        // Notice markup.
        add_action('admin_notices', array($this, 'notice'));

        $this->dismiss_notice();
        $this->dismiss_notice_temporary();
    }

    public function notice()
    {
        if (!$this->is_dismiss_notice()) {
            $this->notice_markup();
        }
    }

    private function is_dismiss_notice()
    {
        return apply_filters('aftc_' . $this->name . '_notice_dismiss', true);
    }

    public function notice_markup()
    {
        echo '';
    }

    /**
     * Hide a notice if the GET variable is set.
     */
    public function dismiss_notice()
    {
        if (isset($_GET['aftc_notice_dismiss']) && isset($_GET['_aftc_upgrade_notice_dismiss_nonce'])) { // WPCS: input var ok.
            if (!wp_verify_nonce(wp_unslash($_GET['_aftc_upgrade_notice_dismiss_nonce']), 'aftc_upgrade_notice_dismiss_nonce')) { // phpcs:ignore WordPress.VIP.ValidatedSanitizedInput.InputNotSanitized
                wp_die(__('Action failed. Please refresh the page and retry.', 'af-companion')); // WPCS: xss ok.
            }

            if (!current_user_can('publish_posts')) {
                wp_die(__('Cheatin&#8217; huh?', 'af-companion')); // WPCS: xss ok.
            }

            $dismiss_notice = sanitize_text_field(wp_unslash($_GET['aftc_notice_dismiss']));

            // Hide.
            if ($dismiss_notice === $_GET['aftc_notice_dismiss']) {
                add_user_meta(get_current_user_id(), 'aftc_' . $dismiss_notice . '_notice_dismiss', 'yes', true);
            }
        }
    }

    public function dismiss_notice_temporary()
    {
        if (isset($_GET['aftc_notice_dismiss_temporary']) && isset($_GET['_aftc_upgrade_notice_dismiss_temporary_nonce'])) { // WPCS: input var ok.
            if (!wp_verify_nonce(wp_unslash($_GET['_aftc_upgrade_notice_dismiss_temporary_nonce']), 'aftc_upgrade_notice_dismiss_temporary_nonce')) { // phpcs:ignore WordPress.VIP.ValidatedSanitizedInput.InputNotSanitized
                wp_die(__('Action failed. Please refresh the page and retry.', 'af-companion')); // WPCS: xss ok.
            }

            if (!current_user_can('publish_posts')) {
                wp_die(__('Cheatin&#8217; huh?', 'af-companion')); // WPCS: xss ok.
            }

            $dismiss_notice = sanitize_text_field(wp_unslash($_GET['aftc_notice_dismiss_temporary']));

            // Hide.
            if ($dismiss_notice === $_GET['aftc_notice_dismiss_temporary']) {
                add_user_meta(get_current_user_id(), 'aftc_' . $dismiss_notice . '_notice_dismiss_temporary', 'yes', true);
            }
        }
    }
}


class AFTC_Upgrade_Notice extends AFTC_Notice {

    public function __construct() {
        if ( ! current_user_can( 'publish_posts' ) ) {
            return;
        }

        $dismiss_url = wp_nonce_url(
            add_query_arg( 'aftc_notice_dismiss', 'upgrade', admin_url() ),
            'aftc_upgrade_notice_dismiss_nonce',
            '_aftc_upgrade_notice_dismiss_nonce'
        );

        $temporary_dismiss_url = wp_nonce_url(
            add_query_arg( 'aftc_notice_dismiss_temporary', 'upgrade', admin_url() ),
            'aftc_upgrade_notice_dismiss_temporary_nonce',
            '_aftc_upgrade_notice_dismiss_temporary_nonce'
        );

        parent::__construct( 'upgrade', 'info', $dismiss_url, $temporary_dismiss_url );

        $this->set_notice_time();

        $this->set_temporary_dismiss_notice_time();

        $this->set_dismiss_notice();
    }

    private function set_notice_time() {
        if ( ! get_option( 'aftc_upgrade_notice_start_time' ) ) {
            update_option( 'aftc_upgrade_notice_start_time', time() );
        }
    }

    private function set_temporary_dismiss_notice_time() {
        if ( isset( $_GET['aftc_notice_dismiss_temporary'] ) && 'upgrade' === $_GET['aftc_notice_dismiss_temporary'] ) {
            update_user_meta( $this->current_user_id, 'aftc_upgrade_notice_dismiss_temporary_start_time', time() );
        }
    }

    public function set_dismiss_notice() {

        /**
         * Do not show notice if:
         *
         * 1. It has not been 5 days since the plugin is activated.
         * 2. If the user has ignored the message partially for 2 days.
         * 3. Dismiss always if clicked on 'Dismiss' button.
         */
        if ( get_option( 'aftc_upgrade_notice_start_time' ) > strtotime( '-1 min' )
            || get_user_meta( get_current_user_id(), 'aftc_upgrade_notice_dismiss', true )
            || get_user_meta( get_current_user_id(), 'aftc_upgrade_notice_dismiss_temporary_start_time', true ) > strtotime( '-2 days' )
        ) {
            add_filter( 'aftc_upgrade_notice_dismiss', '__return_true' );
        } else {
            add_filter( 'aftc_upgrade_notice_dismiss', '__return_false' );
        }
    }

    public function notice_markup() {
        ?>
        <div class="notice notice-success aftc-notice" >
            
            <div class="aftc-notice__content">
                <span class="aftc-icon-display"></span>
                
                    <?php
                    $current_user = wp_get_current_user();
    
                    printf(
                    /* Translators: %1$s current user display name., %2$s this plugin name., %3$s discount coupon code., %4$s discount percentage. */
                    
                       esc_html__(
                            '%1$s If you love the one-click starter site importer, please consider giving us a %4$s5-star rating%5$s on WordPress.org. Your support means the world and keeps us motivated to create exciting new features for free.%7$sDon\'t forget, the %3$s awaits for 330+ expert designed starter templates, and sections. Enjoy the journey! %8$s',
                            'af-companion'
                        ),
                        '<h2>Hello ' . esc_html( $current_user->display_name ) . ', Big thanks for choosing AF Companion!</h2>',
                        '<p class="notice-text"><strong>AF Companion</strong>',
                        '<strong><a target="_blank" href="'.esc_url( $this->pricing_url ) .'">All Themes Plan</a></strong>',
                        '<strong><a href="https://wordpress.org/support/plugin/af-companion/reviews/?filter=5#new-post" target="_blank">',
                        '</a></strong>',
                        '<br>',
                        '<p>',
                        '</p>',
                    );
                    ?>
                </p>
    
                <div class="links">
                     <a href="https://wordpress.org/support/plugin/af-companion/reviews/?filter=5#new-post" class="button button-primary" target="_blank">
                        <span><?php esc_html_e( 'Sure thing', 'af-companion' ); ?></span>
                    </a>
    
                    <a href="<?php echo esc_url( $this->pricing_url ); ?>" class="button button-secondary" target="_blank">
                        <span><?php esc_html_e( 'All Themes Plan', 'af-companion' ); ?></span>
                    </a>                
                    <a href="https://templatespare.com/" class="button button-secondary" target="_blank">
                        <span><?php esc_html_e( 'View Stater Sites', 'af-companion' ); ?></span>
                    </a>                
    
                    <a href="<?php echo esc_url( $this->temporary_dismiss_url ); ?>" class="button button-normal plain">
    
                        <span><?php esc_html_e( 'Maybe later', 'af-companion' ); ?></span>
                    </a>
    
                    <a href="https://afthemes.com/supports/" class="button button-normal plain" target="_blank">
    
                        <span><?php esc_html_e( 'Need help?', 'af-companion' ); ?></span>
                    </a>
                </div>
            </div>
            <a class="aftc-notice-dismiss notice-dismiss" href="<?php echo esc_url( $this->dismiss_url ); ?>"></a>
        </div> <!-- /aftc-notice -->
        <?php
    }
}

new AFTC_Upgrade_Notice();

ZeroDay Forums Mini