├── .gitignore ├── LICENSE ├── README.md ├── admin └── notice.php ├── assets └── admin-notice-screenshot.png └── plugin.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/README.md -------------------------------------------------------------------------------- /admin/notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/admin/notice.php -------------------------------------------------------------------------------- /assets/admin-notice-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/assets/admin-notice-screenshot.png -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/demo-delayed-admin-notice-plugin/HEAD/plugin.php --------------------------------------------------------------------------------