| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/the-post-grid/app/Controllers/Api/ |
Upload File : |
<?php
namespace RT\ThePostGrid\Controllers\Api;
use RT\ThePostGrid\Helpers\Fns;
class CountLayoutInstall {
public function __construct() {
add_action( "rest_api_init", [ $this, 'register_count_layout_route' ] );
}
public function register_count_layout_route() {
register_rest_route( 'rttpg/v1', 'countlayout', [
'methods' => 'POST',
'callback' => [ $this, 'count_layout' ],
'permission_callback' => function () {
return true;
}
] );
}
public function count_layout() {
}
}