HEX
Server:Apache
System:Linux localhost 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64
User:enlugo-es (10006)
PHP:7.4.33
Disabled:opcache_get_status
Upload Files
File: /var/www/vhosts/enlugo.es/httpdocs/wp-content/plugins/landing-pages/classes/class.store.php
<?php

/**
 * Class adds prompts to upgrade to Inbound Pro when user is using GPL Landing Pages. Also will be foundation for template installation engine once we phase out all free templates from core.
 * @package LandingPages
 * @subpackage NeedsAttention
 */
class Inbound_Now_Store {

    /**
     *
     */
    public static function store_display() {

        /* normal display here */
        self::store_redirect();

    }

    /**
     *
     */
    public static function store_redirect() { ?>
        <script>

            window.location = "https://www.inboundnow.com/market";

        </script>
        <?php
    }
}