Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
dev2024_old_skip
/
wp-content
/
plugins
/
mobile-menu
/
includes
/
plugin-settings
/
lib
:
class-admin-notification.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class MobileMenuAdminNotification { function __construct() { add_filter( 'admin_notices', array( $this, 'displayNotifications' ) ); } public function createNotification( $message, $type = 'updated', $location = 'top' ) { } public function displayNotifications() { } public static function formNotification( $message, $type = 'updated', $location = 'top' ) { if ( $location != 'top' ) { $location = 'below-h2'; } if ( $type == 'saved' || $type == 'reset' ) { $message = '<strong>' . $message . '</strong>'; $type = 'updated'; } return "<div class='$type $location'><p>{$message}</p></div>"; } }