jitesoft/wp-base

Internal base package for jitesoft wordpress plugins - not a plugin itself.

1.1.0 2022-08-15 19:15 UTC

This package is auto-updated.

Last update: 2024-04-15 23:07:21 UTC


README

This is not a plugin, nor really anything more than a core part with a few minor functions for jitesoft WordPress plugins.

The lib allows the jitesoft(...) method to be called, which basically contains a static container which can be queried for objects.
In case a jitesoft plugin uses the base package, it will inject the object into the container making it available to easily query from anywhere:

<?php
jitesoft('logger')->debug(...);

Depending on the type of plugin, the object could be either of a singleton type (which means that it won't be re-created) or as a standard object.

You could make use of the object in other plugins if wanted, but there will be no real support of the package.

Basic usage

// Add something
Jitesoft\WordPress\Plugins\Base\getContainer()->bind('something', 'something');
// Get something
Jitesoft\WordPress\Plugins\Base\getContainer()->get('something'); // 'something'
// Get something via convenience method
jitesoft('something'); // 'something'

For full documentation about the underlying container, check out jitesoft/container

License

MIT