wip menu can now receive form with rest api, but no nonce

This commit is contained in:
asus
2024-03-23 18:25:43 +01:00
parent b6d1d63b93
commit aae40be620
4 changed files with 36 additions and 2 deletions

View File

@@ -17,10 +17,33 @@ if (!defined('ABSPATH')) {
*
*/
function plugin_content() {
echo "<p>hello</p>";
$base_rest_route = Fbpatch::URL_BASE_REST_ROUTE;
$fetch_nonce = wp_create_nonce('wp_rest');
$fetch_url = get_site_url() . "/wp-json";
ob_start();
include(plugin_dir_path(__DIR__) . '/html/menu.html');
$html = ob_get_clean();
echo $html;
}
function choose_patches() {
error_log("---test---");
}
// handling routes and endpoints
// diff routes and endpoints : https://stackoverflow.com/q/56075017/9497573
function admin_menu_routes_endpoints() {
$base_rest_route = Fbpatch::URL_BASE_REST_ROUTE;
register_rest_route($base_rest_route, '/choose', array(
'methods' => 'POST',
'callback' => __NAMESPACE__.'\choose_patches',
));
};
add_action('rest_api_init', __NAMESPACE__.'\admin_menu_routes_endpoints');