| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Interface all REST API routes should use |
| 5 |
* |
| 6 |
* @package Caldera_Forms Modified by QuantumCloud |
| 7 |
* @author Josh Pollock <Josh@CalderaWP.com> |
| 8 |
* @license GPL-2.0+ |
| 9 |
* @link |
| 10 |
* @copyright 2016 CalderaWP LLC |
| 11 |
*/ |
| 12 |
interface Qcformbuilder_Forms_API_Route { |
| 13 |
|
| 14 |
/** |
| 15 |
* Add the routes for this set of endpoints |
| 16 |
* |
| 17 |
* @since 1.4.4 |
| 18 |
* |
| 19 |
* @param string $namespace API namespace |
| 20 |
* |
| 21 |
* @return void |
| 22 |
*/ |
| 23 |
public function add_routes( $namespace ); |
| 24 |
|
| 25 |
} |