ACFV1.php
3 years ago
CountLayoutInstall.php
3 years ago
ElImport.php
3 years ago
FrontEndFilterV1.php
3 years ago
GetPostsV1.php
3 years ago
ImageSizeV1.php
3 years ago
RestApi.php
3 years ago
RttpgV1.php
3 years ago
CountLayoutInstall.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace RT\ThePostGrid\Controllers\Api; |
| 4 | |
| 5 | use RT\ThePostGrid\Helpers\Fns; |
| 6 | |
| 7 | class CountLayoutInstall { |
| 8 | public function __construct() { |
| 9 | add_action( "rest_api_init", [ $this, 'register_count_layout_route' ] ); |
| 10 | } |
| 11 | |
| 12 | public function register_count_layout_route() { |
| 13 | register_rest_route( 'rttpg/v1', 'countlayout', [ |
| 14 | 'methods' => 'POST', |
| 15 | 'callback' => [ $this, 'count_layout' ], |
| 16 | 'permission_callback' => function () { |
| 17 | return true; |
| 18 | } |
| 19 | ] ); |
| 20 | } |
| 21 | |
| 22 | public function count_layout() { |
| 23 | |
| 24 | } |
| 25 | |
| 26 | } |