PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.34
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.34
5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 5.5.43 All 159 releases
wp-data-access / WPDataAccess / API / WPDA_Plugin.php

WPDA_Plugin.php in WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards 5.5.34, at WPDataAccess/API/WPDA_Plugin.php

23 lines 756 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace WPDataAccess\API;
4
5 use WPDataAccess\WPDA;
6 class WPDA_Plugin extends WPDA_API_Core {
7 public function register_rest_routes() {
8 register_rest_route( WPDA_API::WPDA_NAMESPACE, 'info', array(
9 'methods' => array(\WP_REST_Server::READABLE),
10 'callback' => function () {
11 $license = 'free';
12 return $this->WPDA_Rest_Response( '', array(
13 'license' => $license,
14 'version' => WPDA::get_option( WPDA::OPTION_WPDA_VERSION ),
15 'client' => WPDA::get_option( WPDA::OPTION_WPDA_CLIENT_VERSION ),
16 ) );
17 },
18 'permission_callback' => '__return_true',
19 ) );
20 }
21
22 }
23