first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
<?php
namespace Jet_Woo_Builder\Endpoints;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Define Endpoint_Base class
*/
abstract class Base {
/**
* Returns route name
*
* @return string
*/
abstract function get_name();
/**
* API callback
* @return void
*/
abstract function callback( $request );
/**
* Returns endpoint request method - GET/POST/PUT/DELTE
*
* @return string
*/
public function get_method() {
return 'GET';
}
/**
* Check user access to current end-popint
*
* @return bool
*/
public function permission_callback() {
return true;
}
/**
* Get query param. Regex with query parameters
*
* Example:
*
* (?P<id>[\d]+)/(?P<meta_key>[\w-]+)
*
* @return string
*/
public function get_query_params() {
return '';
}
/**
* Returns arguments config
*
* Example:
*
* array(
* array(
* 'type' => array(
* 'default' => '',
* 'required' => false,
* ),
* )
*
* @return array
*/
public function get_args() {
return array();
}
}

View File

@@ -0,0 +1,61 @@
<?php
namespace Jet_Woo_Builder\Endpoints;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Define Posts class
*/
class Plugin_Settings extends Base {
/**
* [get_method description]
* @return [type] [description]
*/
public function get_method() {
return 'POST';
}
/**
* Returns route name
*
* @return string
*/
public function get_name() {
return 'plugin-settings';
}
/**
* [callback description]
* @param [type] $request [description]
* @return function [description]
*/
public function callback( $request ) {
$data = $request->get_params();
$current = get_option( jet_woo_builder_settings()->key, array() );
if ( is_wp_error( $current ) ) {
return rest_ensure_response( [
'status' => 'error',
'message' => __( 'Server Error', 'jet-woo-builder' )
] );
}
foreach ( $data as $key => $value ) {
$current[ $key ] = is_array( $value ) ? $value : esc_attr( $value );
}
update_option( jet_woo_builder_settings()->key, $current );
return rest_ensure_response( [
'status' => 'success',
'message' => __( 'Settings have been saved', 'jet-woo-builder' )
] );
}
}