RHJ4 Notifications

Generate many different types of popup notifications to users from PHP or jQuery with only a single line of code.

Author:Bob Jones (profile at wordpress.org)
WordPress version required:3.0.1
WordPress version tested:3.9.2
Plugin version:1.2
Added to WordPress repository:20-09-2014
Last updated:23-09-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://bellinghamwordpressdevelopers.com/dona...
Total downloads:698
plugin download
Click to start download

RHJ4 Notifications and its sibling, RHJ4 Diagnostics solve problems that have plagued programmers for years: How to communicate with users in a clean, clear and visually consistent fashion regardless of where in the program the message originates.

A notification message can be sent from jQuery code in the browser or from PHP code in the server. Either type of message can be displayed immediately or queued for display after the next page turn.

Notifications appear as popup messages on the bottom right corner of the screen and can stay on the screen until the user clicks on them or they can disappear after five seconds.

Using this plugin, a message can be sent easily from a single line of PHP code:

    rhj4_notification('Warning! Danger, Will Robinson!', NOTIFICATION_TYPE_WARNING);

The same messsage can be sent from jQuery code running in the browser:

    jQuery.notification('Warning! Danger, Will Robinson!',
    jQuery.notification.type('warning'));

By default, notifications will disappear from the screen after five seconds; however, to make a notification "sticky", add true as the third argument to either the PHP or jQuery functions:

    jQuery.notification('Warning! Danger, Will Robinson!',
    jQuery.notification.type('warning'), true);

Notifications can be displayed immediately or queued in the wp_notifications table for display later. The wp_notifications table is created when the plugin is enabled. To "enable" this plugin, see Settings and click on the "Enable" checkbox.

RHJ4 Notifications supports 15 types of notifications


FAQ
ChangeLog