Browse
For agents
About
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more
/
trunk
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more
vtrunk
Switch version
2.0.2
trunk
0.2
1.0
1.1
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
2.0.0
2.0.1
Overview
Code
texty
/
includes
/
Api
/
Base.php
Base.php
in Texty – SMS Notification for WordPress, WooCommerce, Dokan and more trunk, at includes/Api/Base.php
20 lines
336 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
namespace
Texty
\
Api
;
4
5
use
WP_REST_Controller
;
6
7
class
Base
extends
WP_REST_Controller
{
8
9
/**
10
* Permission check
11
*
12
*
@param
WP_REST_Request
$request
13
*
14
*
@return
WP_Error
|
bool
15
*/
16
public
function
admin_permissions_check
(
$
request
)
{
17
return
current_user_can
(
'
manage_options
'
)
;
18
}
19
}
20