init.php
26 lines
| 1 | <?php |
| 2 | namespace ElementsKit_Lite\Libs\Pro_Label; |
| 3 | |
| 4 | defined( 'ABSPATH' ) || exit; |
| 5 | |
| 6 | class Init { |
| 7 | use Admin_Notice; |
| 8 | |
| 9 | public function __construct() { |
| 10 | add_action( 'current_screen', array( $this, 'hook_current_screen' ) ); |
| 11 | } |
| 12 | |
| 13 | public function hook_current_screen( $screen ) { |
| 14 | if ( ! in_array( $screen->id, array( 'nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template', 'dashboard' ) ) ) { |
| 15 | return; |
| 16 | } |
| 17 | |
| 18 | $activation_stamp = get_option( 'elementskit_lite_activation_stamp' ); |
| 19 | if ( gmdate( 'd', ( time() - $activation_stamp ) ) > 10 ) { |
| 20 | add_action( 'admin_head', array( $this, 'show_go_pro_notice' ) ); |
| 21 | } |
| 22 | |
| 23 | add_action( 'admin_footer', array( $this, 'footer_alert_box' ) ); |
| 24 | } |
| 25 | } |
| 26 |