, Wow-Company * @copyright 2024 Dmytro Lobov * @license GPL-2.0+ * */ namespace FloatMenuLite\Admin; use FloatMenuLite\WOWP_Plugin; defined( 'ABSPATH' ) || exit; class AdminNotices { public static function init(): void { add_action( 'admin_notices', [ __CLASS__, 'admin_notice' ] ); } public static function admin_notice(): bool { if ( ! isset( $_GET['page'] ) ) { return false; } if ( $_GET['page'] !== WOWP_Plugin::SLUG ) { return false; } if ( ! empty( $_GET['notice'] ) && $_GET['notice'] === 'save_item' ) { self::save_item(); } elseif ( ! empty( $_GET['notice'] ) && $_GET['notice'] === 'remove_item' ) { self::remove_item(); } return true; } public static function save_item(): void { $nonce = isset( $_REQUEST['nonce'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ) : ''; if ( ! empty( $nonce ) && wp_verify_nonce( $nonce, 'save-item' ) ) { $text = __( 'Item Saved', 'float-menu' ); echo '
' . esc_html( $text ) . '
'; } } public static function remove_item(): void { $text = __( 'Item Remove', 'float-menu' ); echo '
' . esc_html( $text ) . '
'; } }