A simplified OOP implementation of the WordPress admin notices.
- The Goals, or What This Package Does?
- Install
- Usage
- Frequently Asked Questions
- Can I implement my own notice classes?
- Can I use a different storage scheme other than
wp_option
table? - Is this a plugin?
- What to do when wp.org plugin team tell me to clean up the
vendor
folder? - Can two different plugins use this package at the same time?
- Do you have a demo plugin that use this package?
- Do you have real life examples that use this package?
- It looks awesome. Where can I find some more goodies like this?
- Support
- Developing
- Running the Tests
- Feedback
- Change log
- Security
- Contributing
- Credits
- License
Installation should be done via composer, details of how to install composer can be found at https://getcomposer.org/.
$ composer require typisttech/wp-admin-notices
You should put all WP Admin Notices
classes under your own namespace to avoid class name conflicts.
use TypistTech\WPAdminNotices\Factory;
use TypistTech\WPAdminNotices\Notice;
use TypistTech\WPAdminNotices\StickyNotice;
$store = Factory::build('my_unique_demo_option', 'my_unique_demo_action');
add_action('admin_init', function () use ($store) {
$notice = new Notice('example-notice-1', 'my notice message');
$store->add($notice);
}
);
add_action('post_updated', function ($post_id) use ($store) {
$notices[] = new Notice(
'example-notice-2',
"<p><strong>WPAdminNotices</strong>: Post ID: $post_id has been updated.</p>",
Notice::SUCCESS
);
$notices[] = new StickyNotice(
'example-notice-3',
'<p><strong>WPAdminNotices</strong>: StickyNotice persists in database until user clicks to dismiss it.</p>'
);
$store->add(...$notices);
}
);
One-off notice that guaranteed to be shown once and once only.
Notice
constructor.
- @param string $handle The notice's unique identifier.
- @param string $content The HTML content of the notice.
- @param string|null $type The notice's type. Expecting one of
Notice::UPDATE_NAG
,Notice::ERROR
,Notice::WARNING
,Notice::INFO
,Notice::SUCCESS
. Default isNotice::INFO
.
Notice::UPDATE_NAG
is not suitable for regular admin notices. See WordPress codex.
$notice = new Notice('example-notice', '<strong>Hello</strong> World!', Notice::SUCCESS);
StickyNotice
persists in database until user clicks to dismiss it.
StickyNotice
constructor.
- @param string $handle The notice's unique identifier. Also used to permanently dismiss a sticky notice.
- @param string $content The HTML content of the notice.
- @param string|null $type The notice's type. Expecting one of
StickyNotice::ERROR
,StickyNotice::WARNING
,StickyNotice::INFO
,StickyNotice::SUCCESS
. Default isStickyNotice::INFO
.
UPDATE_NAG
is not available for StickyNotice
.
$stickyNotice = new StickyNotice('example-sticky-notice', 'I wont go away until users click on me.', StickyNotice::WARNING);
By default, WP Admin Notices
stores notices in WordPress' wp_option
table via Store
.
If you want to use an alternative store, see FAQ.
Store
constructor.
- @param string $optionKey Key in options table that holds all enqueued notices.
$store = new Store('my_unique_option_key');
Enqueue admin notices to database.
Not limited to Notice
and StickyNotice
only, any instance of NoticeInterface
is accepted. See FAQ.
- @param NoticeInterface[] ...$notices Notices to be enqueued.
$store->add($notice1, $notice2);
// To update a notice, re-add with the same handle.
$oldNotice = new Notice('i-am-unique', "Chaos isn't a pit.");
$store->add($oldNotice);
$newNotice = new Notice('i-am-unique', 'Chaos is a ladder.');
$store->add($newNotice);
Delete an enqueued notice.
- @param string $handle Handle of the notice to be deleted.
$store->delete('i-am-unique');
Notifier
handles all interactions between WordPress and this package via action hooks. You have to hook it into WordPress via add_action
unless you use Factory
.
Notifier constructor.
- @param string $action AJAX request's 'action' property for sticky notices.
- @param StoreInterface $store Connector to notice storage.
$store = new Store('my_unique_option_key');
$notifier = new Notifier('my_unique_action', $store);
add_action('admin_notices', [$notifier, 'renderNotices']);
add_action("wp_ajax_my_unique_action", [$notifier, 'dismissNotice']);
add_action('admin_footer', [$notifier, 'renderScript']);
Factory
is a helper class to reduce boilerplate code for those who use default Store
class. If you use a custom store, don't use this class.
- @param string $optionKey Key in options table that holds all enqueued notices.
- @param string $action AJAX request's 'action' property for sticky notices.
- @return Store
$store = Factory::build('my_unique_option_key', 'my_unique_action');
Of course! Just implements the NoticeInterface
.
Take a look at classes Notice
and StickyNotice
as well as their tests for example implementations of StoreInterface
.
If you'd like to create a open-source package to do this to help others, open a new issue to let us know, we'd love to help you with it.
Of course! WP Admin Notices
data store is completely swappable, and always has been.
To implement a custom store:
- Implement
StoreInterface
- Pass you custom store to
Notifier
class MyCustomStore implements StoreInterface
{
// Implements all the required methods.
}
$store = new MyCustomStore;
$action = 'my_unique_action';
$notifier = new Notifier($action, $store);
add_action('admin_notices', [$notifier, 'renderNotices']);
add_action("wp_ajax_$action", [$notifier, 'dismissNotice']);
add_action('admin_footer', [$notifier, 'renderScript']);
Take a look at the Store
class and StoreTest
for an example implementation of StoreInterface
.
If you'd like to create a open-source package to do this to help others, open a new issue to let us know, we'd love to help you with it.
No, this is a package that should be part of your plugin.
Re-install packages via the following command. This package exports only necessary files to dist
.
$ composer install --no-dev --prefer-dist --optimize-autoloader
Yes, if put all WP Admin Notices
classes under your own namespace to avoid class name conflicts.
You can install this demo plugin by
$ wp plugin install https://github.com/TypistTech/wp-admin-notices/archive/nightly.zip --activate
Check out wp-admin-notices.php
. We use it for acceptance tests.
Here you go:
Add your own plugin here
- Articles on Typist Tech's blog
- Tang Rufus' WordPress plugins on wp.org
- More projects on Typist Tech's GitHub profile
- Stay tuned on Typist Tech's newsletter
- Follow Tang Rufus' Twitter account
- Hire Tang Rufus to build your next awesome site
Love wp-admin-notices
? Help me maintain it, a donation here can help with it.
Ready to take freelance WordPress jobs. Contact me via the contact form here or, via email [email protected]
Contact: Tang Rufus
To setup a developer workable version you should run these commands:
$ composer create-project --keep-vcs --no-install typisttech/wp-admin-notices:dev-master
$ cd wp-admin-notices
$ composer install
WP Admin Notices run tests on Codeception and relies wp-browser to provide WordPress integration. Before testing, you have to install WordPress locally and add a codeception.yml file. See *.suite.example.yml for Local by Flywheel configuration examples.
Actually run the tests:
$ composer test
We also test all PHP files against PSR-2: Coding Style Guide and part of the WordPress coding standard.
Check the code style with $ composer check-style
.
Please provide feedback! We want to make this package useful in as many projects as possible. Please submit an issue and point out what you do and don't like, or fork the project and make suggestions. No issue is too small.
Please see CHANGELOG for more information on what has changed recently.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
WP Admin Notices is a Typist Tech project and maintained by Tang Rufus, freelance developer for hire.
Full list of contributors can be found here.
WP Admin Notices is licensed under the GPLv2 (or later) from the Free Software Foundation. Please see License File for more information.