| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
class Hostinger_Admin_Hooks { |
| 6 |
private $settings; |
| 7 |
|
| 8 |
public function __construct() { |
| 9 |
$this->settings = new Hostinger_Settings(); |
| 10 |
|
| 11 |
add_action( 'admin_footer', array( $this, 'rate_plugin' ) ); |
| 12 |
} |
| 13 |
|
| 14 |
public function rate_plugin(): void { |
| 15 |
$promotional_banner_hidden = get_transient( 'hts_hide_promotional_banner_transient' ); |
| 16 |
$two_hours_in_seconds = 7200; |
| 17 |
|
| 18 |
if ( $promotional_banner_hidden && time() > $promotional_banner_hidden + $two_hours_in_seconds ) { |
| 19 |
require_once HOSTINGER_ABSPATH . 'includes/admin/views/partials/hostinger-rate-us.php'; |
| 20 |
} |
| 21 |
} |
| 22 |
} |
| 23 |
|
| 24 |
$hostinger_admin_hooks = new Hostinger_Admin_Hooks(); |
| 25 |
|