├── LICENSE ├── composer.json └── src ├── AbstractNotice.php ├── Factory.php ├── Notice.php ├── NoticeInterface.php ├── Notifier.php ├── StickyNotice.php ├── Store.php └── StoreInterface.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/AbstractNotice.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/Notice.php -------------------------------------------------------------------------------- /src/NoticeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/NoticeInterface.php -------------------------------------------------------------------------------- /src/Notifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/Notifier.php -------------------------------------------------------------------------------- /src/StickyNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/StickyNotice.php -------------------------------------------------------------------------------- /src/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/Store.php -------------------------------------------------------------------------------- /src/StoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-admin-notices/HEAD/src/StoreInterface.php --------------------------------------------------------------------------------