1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34:
<?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
}
}