/var/www/html/wp-content/plugins/checkout-for-woocommerce/includes/Admin/Notices/NoticeAbstract.php


1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Objectiv\Plugins\Checkout\Admin\Notices;

abstract class 
NoticeAbstract {
    public function 
__construct() {}

    public function 
init() {
        
add_action'admin_notices', array( $this'maybe_show' ) );
    }

    abstract public function 
maybe_show();
}