Download the PHP package typisttech/wp-admin-notices without Composer

On this page you can find all versions of the php package typisttech/wp-admin-notices. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-admin-notices

WP Admin Notices

Latest Stable Version Total Downloads Build Status codecov Scrutinizer Code Quality PHP Versions Tested StyleCI License Donate via PayPal Hire Typist Tech

A simplified OOP implementation of the WordPress admin notices.

The Goals, or What This Package Does?

Install

Installation should be done via composer, details of how to install composer can be found at https://getcomposer.org/.

You should put all WP Admin Notices classes under your own namespace to avoid class name conflicts.

Usage

Example

Notice

One-off notice that guaranteed to be shown once and once only.

__construct(string $handle, string $content, string $type = null)

Notice constructor.

Notice::UPDATE_NAG is not suitable for regular admin notices. See WordPress codex.

StickyNotice

StickyNotice persists in database until user clicks to dismiss it.

__construct(string $handle, string $content, string $type = null)

StickyNotice constructor.

UPDATE_NAG is not available for StickyNotice.

Store

By default, WP Admin Notices stores notices in WordPress' wp_option table via Store. If you want to use an alternative store, see FAQ.

__construct(string $optionKey)

Store constructor.

add(NoticeInterface ...$notices)

Enqueue admin notices to database.

Not limited to Notice and StickyNotice only, any instance of NoticeInterface is accepted. See FAQ.

delete(string $handle)

Delete an enqueued notice.

Notifier

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.

__construct(string $action, StoreInterface $store)

Notifier constructor.

Factory

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.

build(string $optionKey, string $action): Store

Frequently Asked Questions

Can I implement my own notice classes?

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.

Can I use a different storage scheme other than wp_option table?

Of course! WP Admin Notices data store is completely swappable, and always has been.

To implement a custom store:

  1. Implement StoreInterface
  2. Pass you custom store to Notifier

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.

Is this a plugin?

No, this is a package that should be part of your plugin.

What to do when wp.org plugin team tell me to clean up the vendor folder?

Re-install packages via the following command. This package exports only necessary files to dist.

Can two different plugins use this package at the same time?

Yes, if put all WP Admin Notices classes under your own namespace to avoid class name conflicts.

Do you have a demo plugin that use this package?

You can install this demo plugin by

Check out wp-admin-notices.php. We use it for acceptance tests.

Do you have real life examples that use this package?

Here you go:

Add your own plugin here

It looks awesome. Where can I find some more goodies like this?

Support

Love wp-admin-notices? Help me maintain it, a donation here can help with it.

Why don't you hire me?

Ready to take freelance WordPress jobs. Contact me via the contact form here or, via email [email protected]

Want to help in other way? Want to be a sponsor?

Contact: Tang Rufus

Developing

To setup a developer workable version you should run these commands:

Running the Tests

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 Local by Flywheel configuration examples.

Actually run the tests:

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.

Feedback

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.

Change log

Please see CHANGELOG for more information on what has changed recently.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Contributing

Please see CODE_OF_CONDUCT for details.

Credits

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.

License

WP Admin Notices is licensed under the GPLv2 (or later) from the Free Software Foundation. Please see License File for more information.


All versions of wp-admin-notices with dependencies

PHP Build Version
Package Version
Requires php Version >7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package typisttech/wp-admin-notices contains the following files

Loading the files please wait ....