| 1 |
<?php |
| 2 |
/** |
| 3 |
* Global (non namespaced) functions. |
| 4 |
* |
| 5 |
* @package ContentControl |
| 6 |
*/ |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
|
| 10 |
/** |
| 11 |
* Easy access to all plugin services from the container. |
| 12 |
* |
| 13 |
* @see \ContentControl\plugin_instance |
| 14 |
* |
| 15 |
* @param string|null $service_or_config Key of service or config to fetch. |
| 16 |
* @return \ContentControl\Plugin\Core|mixed |
| 17 |
*/ |
| 18 |
function content_control( $service_or_config = null ) { |
| 19 |
return ContentControl\plugin( $service_or_config ); |
| 20 |
} |
| 21 |
|