This function will add the notification * * @param array $args configuration for notification * *
* * @since 1.0.0 */ public static function add_notification( $args ) { $default = array( 'type' => 'success', 'content' => '', 'is_dismissible' => true, 'callback' => null, 'show_only' => false, ); self::$all_notifications[ key( $args ) ] = wp_parse_args( $args[ key( $args ) ], $default ); } /** * Hide notices to show under dashboard *
Its a handler function to any request come to hide the notice *
save the slug in Database so that it wont come again */ public static function hide_notices() { if ( isset( $_GET['xl-hide-notice'] ) && isset( $_GET['_xl_notice_nonce'] ) ) { if ( ! wp_verify_nonce( $_GET['_xl_notice_nonce'], 'xl_hide_notices_nonce' ) ) { wp_die( __( 'Action failed. Please refresh the page and retry.', 'xlplugins' ) ); } if ( ! current_user_can( 'manage_options' ) ) { wp_die( __( 'Cheating huh?', 'xlplugins' ) ); } $hide_notice = sanitize_text_field( $_GET['xl-hide-notice'] ); self::remove_notice( $hide_notice ); do_action( 'xl_hide_' . $hide_notice . '_notice' ); } } /** * Remove a notice from being displayed * * @param string $name */ public static function remove_notice( $name ) { $has_notice_removed = get_option( 'xl_admin_notices' ); if ( $has_notice_removed && ! empty( $has_notice_removed ) ) { $array_to_push = array_push( get_option( 'xl_admin_notices' ), $name ); update_option( 'xl_admin_notices', $array_to_push, false ); } else { update_option( 'xl_admin_notices', array( $name ), false ); } } /** * Get all removed notifications from database * So that we can filter the push notification with the removed ones * @return array */ public static function get_all_removed() { return get_option( 'xl_admin_notices' ); } /** * Filter function that will filter pushed notification against the removed ones */ public static function filter_before_render() { $clone = self::$all_notifications; // $get_all_removed = self::get_all_removed(); $get_all_removed = ''; if ( ! is_null( self::$all_notifications ) && ! empty( self::$all_notifications ) && ! empty( $get_all_removed ) ) { foreach ( self::$all_notifications as $slug => $notification ) { if ( in_array( $slug, self::get_all_removed() ) ) { unset( $clone[ $slug ] ); } } } self::$all_notifications = $clone; } /** * Render all the notifications after filtering * @since 1.0.0 */ public static function render() { self::filter_before_render(); if ( ! is_null( self::$all_notifications ) && ! empty( self::$all_notifications ) ) { foreach ( self::$all_notifications as $slug => $notification ) { ?>