Motivation and How to use

The Utilities Module is where all the other services are. If you don't remember from the foundations module's documentation, services and handlers are a abstract wrappers around concrete implementations for fulfilling given actions. For example, the foundations module comes with pre-packaged with a logging service.

circle-info

Services are meant to be singletons. Usually they register one or multiple handlers for performing the actual actions with (like how the logging service required two logging handlers, one for the framework itself and one for the actual plugin).

The module is available for free installation through Composer on Packagistarrow-up-right. We'll explore the pre-packages services in this documentation.

triangle-exclamation
circle-info

If you get confused while reading the documentation, don't forget to take a look over our example plugin on GitHubarrow-up-right. There are examples there of using some of the services described here.

Last updated