Browse
For agents
About
Force Refresh
/
2.9.1
Force Refresh
v2.9.1
Switch version
3.2.1
3.2.0
3.1.2
3.1.1
3.1.0
trunk
1.0.0
1.1.0
1.1.1
1.1.2
1.2.0
2.0.0
2.1.0
2.1.1
2.1.2
2.1.3
2.1.4
2.1.5
2.1.6
2.10.0
2.10.1
2.10.2
2.11.0
2.11.1
2.12.0
All 54 releases
Overview
Code
force-refresh
/
includes
/
api
/
interfaces
/
interface-api-handler-admin.php
interface-api-handler-admin.php
in Force Refresh 2.9.1, at includes/api/interfaces/interface-api-handler-admin.php
19 lines
369 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
/**
3
* Our API handler interface for admin calls.
4
*
5
*
@package
ForceRefresh
6
*/
7
8
namespace
JordanLeven
\
Plugins
\
ForceRefresh
\
Api
\
Interfaces
;
9
10
interface
Api_Handler_Admin_Interface
{
11
12
/**
13
* Function for getting the endpoint for our endpoints.
14
*
15
*
@return
string
The namespace
16
*/
17
public
static
function
get_rest_endpoint
(
)
:
string
;
18
}
19