HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/codepress-admin-columns/classes/Check/Review.php
<?php

namespace AC\Check;

use AC\Ajax;
use AC\Asset\Location\Absolute;
use AC\Asset\Script;
use AC\Capabilities;
use AC\Message;
use AC\Preferences;
use AC\Registerable;
use AC\Screen;
use AC\Type\Url\Documentation;
use AC\Type\Url\UtmTags;

class Review
    implements Registerable
{

    private $location;

    public function __construct(Absolute $location)
    {
        $this->location = $location;
    }

    public function register(): void
    {
        add_action('ac/screen', [$this, 'display']);

        $this->get_ajax_handler()->register();
    }

    public function display(Screen $screen): void
    {
        if ( ! $screen->has_screen()) {
            return;
        }

        if ( ! current_user_can(Capabilities::MANAGE)) {
            return;
        }

        if ( ! $screen->is_admin_screen() && ! $screen->is_list_screen()) {
            return;
        }

        if ($this->get_preferences()->get('dismiss-review')) {
            return;
        }

        if ( ! $this->first_login_compare()) {
            return;
        }

        $script = new Script('ac-notice-review', $this->location->with_suffix('assets/js/message-review.js'), ['jquery']
        );
        $script->enqueue();

        $notice = new Message\Notice\Dismissible($this->get_message(), $this->get_ajax_handler());
        $notice
            ->set_id('review')
            ->register();
    }

    protected function get_ajax_handler(): Ajax\Handler
    {
        $handler = new Ajax\Handler();
        $handler
            ->set_action('ac_check_review_dismiss_notice')
            ->set_callback([$this, 'ajax_dismiss_notice']);

        return $handler;
    }

    protected function get_preferences(): Preferences\User
    {
        return new Preferences\User('check-review');
    }

    protected function first_login_compare(): bool
    {
        // Show after 30 days
        return time() - (30 * DAY_IN_SECONDS) > $this->get_first_login();
    }

    /**
     * Return the Unix timestamp of first login
     */
    protected function get_first_login(): int
    {
        $timestamp = $this->get_preferences()->get('first-login-review');

        if (empty($timestamp)) {
            $timestamp = time();

            $this->get_preferences()->set('first-login-review', $timestamp);
        }

        return $timestamp;
    }

    public function ajax_dismiss_notice(): void
    {
        $this->get_ajax_handler()->verify_request();
        $this->get_preferences()->set('dismiss-review', true);
    }

    private function get_documentation_url(string $utm_medium): string
    {
        return (new UtmTags(new Documentation(), $utm_medium))->get_url();
    }

    protected function get_message(): string
    {
        $product = __('Admin Columns', 'codepress-admin-columns');

        ob_start();

        ?>

		<div class="info">
			<p>
                <?php
                printf(
                    __(
                        "We don't mean to bug you, but you've been using %s for some time now, and we were wondering if you're happy with the plugin. If so, could you please leave a review at wordpress.org? If you're not happy with %s, please %s.",
                        'codepress-admin-columns'
                    ),
                    '<strong>' . $product . '</strong>',
                    $product,
                    '<a class="hide-review-notice-soft" href="#">' . __(
                        'click here',
                        'codepress-admin-columns'
                    ) . '</a>'
                ); ?>
			</p>
			<p class="buttons">
				<a class="button button-primary" href="https://wordpress.org/support/view/plugin-reviews/codepress-admin-columns?rate=5#postform" target="_blank"><?php
                    _e('Leave a review!', 'codepress-admin-columns'); ?></a>
				<a class="button button-secondary hide-review-notice" href='#' data-dismiss=""><?php
                    _e("Permanently hide notice", 'codepress-admin-columns'); ?></a>
			</p>
		</div>
		<div class="help hidden">
			<a href="#" class="hide-notice hide-review-notice"></a>
			<p>
                <?php

                printf(
                    __(
                        "We're sorry to hear that; maybe we can help! If you're having problems properly setting up %s or if you would like help with some more advanced features, please visit our %s.",
                        'codepress-admin-columns'
                    ),
                    $product,
                    '<a href="' . esc_url($this->get_documentation_url('review-notice')) . '" target="_blank">' . __(
                        'documentation page',
                        'codepress-admin-columns'
                    ) . '</a>'
                );

                printf(
                    __('You can also find help on the %s, and %s.', 'codepress-admin-columns'),
                    '<a href="https://wordpress.org/support/plugin/codepress-admin-columns#postform" target="_blank">' . __(
                        'Admin Columns forum on WordPress.org',
                        'codepress-admin-columns'
                    ) . '</a>',
                    '<a href="https://wordpress.org/plugins/codepress-admin-columns/#faq" target="_blank">' . __(
                        'find answers to frequently asked questions',
                        'codepress-admin-columns'
                    ) . '</a>'
                );

                ?>
			</p>
		</div>

        <?php

        return ob_get_clean();
    }

}