<?php
/**
* Navigation REST route
*
* @package automattic/jetpack-import
*/
namespace Automattic\Jetpack\Import\Endpoints;
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
/**
* Navigation Block
*/
class Navigation extends \WP_REST_Posts_Controller {
/**
* Base class
*/
use Import;
/**
* The Import ID add a new item to the schema.
*/
use Import_ID;
/**
* Whether the controller supports batching.
*
* @var array
*/
protected $allow_batch = array( 'v1' => true );
/**
* Constructor.
*/
public function __construct() {
parent::__construct( 'wp_navigation' );
}
}