Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
perpending
/
wp-content
/
plugins
/
elementor-pro
/
core
/
data
/
interfaces
:
endpoint.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace ElementorPro\Core\Data\Interfaces; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } interface Endpoint { /** * @return string The interface ID */ public function get_name(): string; /** * @return string The route slug which will be used to access the endpoint by URL. */ public function get_route(): string; }