29 lines
505 B
PHP
29 lines
505 B
PHP
<?php
|
|
/**
|
|
* Admin notices
|
|
*
|
|
* @package Woo_AI\Admin
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Admin notices class.
|
|
*/
|
|
class Woo_AI_Admin_Notices {
|
|
|
|
/**
|
|
* WooCommerce not installed notice.
|
|
*/
|
|
public function woocoommerce_not_installed() {
|
|
include_once dirname( __FILE__ ) . '/views/html-admin-missing-woocommerce.php';
|
|
}
|
|
|
|
/**
|
|
* Jetpack not installed notice.
|
|
*/
|
|
public function jetpack_not_installed() {
|
|
include_once dirname( __FILE__ ) . '/views/html-admin-missing-jetpack.php';
|
|
}
|
|
}
|