# learnpress/4.4.2/inc/Ajax/LoadContentViaAjax.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.2. 85 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/Ajax/LoadContentViaAjax.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.2/raw/inc/Ajax/LoadContentViaAjax.php
- Modified: 2026-07-11T02:31:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/Ajax/LoadContentViaAjax.php#L10-L20`.

```php
<?php
namespace LearnPress\Ajax;

use Exception;
use LearnPress\Helpers\Response;
use LP_Helper;
use stdClass;
use Throwable;

defined( 'ABSPATH' ) || exit;

/**
 * class AjaxBase
 *
 * @since 4.2.7.6
 * @version 1.0.2
 */
class LoadContentViaAjax extends AbstractAjax {
	public function load_content_via_ajax() {
		$response = new Response();

		try {
			$params = wp_unslash( $_REQUEST['data'] ?? '' );
			if ( empty( $params ) ) {
				throw new Exception( 'Error: params invalid!' );
			}

			$params = LP_Helper::json_decode( $params, true );

			if ( empty( $params['callback'] ) ||
				! isset( $params['args'] ) ) {
				throw new Exception( 'Error: params invalid!' );
			}

			// @var array $args
			$args     = $params['args'];
			$callBack = $params['callback'];

			if ( empty( $callBack['class'] ) ||
				empty( $callBack['method'] ) ) {
				throw new Exception( 'Error: callback invalid!' );
			}

			$class  = $callBack['class'];
			$method = $callBack['method'];

			// Security: check callback is registered.
			$allow_callbacks = apply_filters(
				'lp/rest/ajax/allow_callback',
				[
					'LP_Admin_Dashboard:order_statistic',
					'LP_Admin_Dashboard:plugin_status_content',
				]
			);
			$callBackStr     = $class . ':' . $method;
			if ( ! in_array( $callBackStr, $allow_callbacks ) ) {
				throw new Exception( 'Error: callback is not register!' );
			}

			// Check class and method is callable.
			if ( is_callable( [ $class, $method ] ) ) {
				$data = call_user_func( [ $class, $method ], $args );
			} else {
				throw new Exception( 'Error: callback is not callable!' );
			}

			if ( ! $data instanceof stdClass && ! isset( $data->content ) ) {
				throw new Exception( 'Error: data content invalid!' );
			}

			$response->message = $data->message ?? '';
			unset( $data->message );

			$response->status = $data->status ?? Response::STATUS_SUCCESS;
			unset( $data->status );

			$response->data = $data;
		} catch ( Throwable $e ) {
			$response->message = $e->getMessage();
		}

		wp_send_json( $response );
	}
}

```
