File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
namespace MercadoPago\Woocommerce\Hooks;
if (!defined('ABSPATH')) {
exit;
}
class Endpoints
{
/**
* Register AJAX endpoints
*
* @param string $endpoint
* @param mixed $callback
*
* @return void
*/
public function registerAjaxEndpoint(string $endpoint, $callback): void
{
add_action('wp_ajax_' . $endpoint, $callback);
}
/**
* Register WC API endpoints
*
* @param string $endpoint
* @param mixed $callback
*
* @return void
*/
public function registerApiEndpoint(string $endpoint, $callback): void
{
add_action('woocommerce_api_' . strtolower($endpoint), $callback);
}
/**
* Register WC_AJAX endpoints
*
* @param string $endpoint
* @param mixed $callback
*
* @return void
*/
public function registerWCAjaxEndpoint(string $endpoint, $callback): void
{
add_action('wc_ajax_' . $endpoint, $callback);
}
}
