| Server IP : 89.108.64.180 / Your IP : 216.73.216.60 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/omapart.ru/wp-content/plugins/optinmonster/OMAPI/WPForms/ |
Upload File : |
<?php
/**
* WPForms API routes for usage in WP's RestApi.
*
* @since 2.9.0
*
* @author Eduardo Nakatsuka
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Rest Api class.
*
* @since 2.9.0
*/
class OMAPI_WPForms_RestApi extends OMAPI_BaseRestApi {
/**
* Registers the Rest API routes for WPForms
*
* @since 2.9.0
*
* @return void
*/
public function register_rest_routes() {
register_rest_route(
$this->namespace,
'wpforms/forms',
array(
'methods' => 'GET',
'permission_callback' => array( $this, 'logged_in_or_has_api_key' ),
'callback' => array( $this, 'forms' ),
)
);
}
/**
* Handles getting WPForms forms.
*
* Route: GET omapp/v1/woocommerce/forms
*
* @since 2.9.0
*
* @param WP_REST_Request $request The REST Request.
*
* @return WP_REST_Response The API Response
* @throws Exception If plugin action fails.
*/
public function forms() {
try {
return new WP_REST_Response(
OMAPI_WPForms::get_instance()->get_forms_array(),
200
);
} catch ( Exception $e ) {
return $this->exception_to_response( $e );
}
}
}