for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carbon_Fields\Service;
use \Carbon_Fields\REST_API\Router;
use \Carbon_Fields\REST_API\Decorator;
/*
* Service which provides the ability to do meta queries for multi-value fields and nested fields
*/
class REST_API_Service extends Service {
/**
* Router instance
*
* @var Router
protected $router;
* Decorator instance
* @var Decorator
protected $decorator;
* @param Router $router
* @param Decorator $decorator
public function __construct( Router $router, Decorator $decorator ) {
$this->router = $router;
$this->decorator = $decorator;
}
* Enable REST API integration
protected function enabled() {
add_action( 'carbon_after_register_fields', array( $this, 'boot' ) );
* Disable REST API integration
protected function disabled() {
remove_action( 'carbon_after_register_fields', array( $this, 'boot' ) );
* Bootstrap all functionality
public function boot() {
$this->router->boot();
$this->decorator->boot();