LLMS_Analytics_Widget::output()


Source Source

File: includes/abstracts/abstract.llms.analytics.widget.php

	public function output() {

		$this->set_query();
		$this->query();

		$this->response = $this->format_response();

		if ( $this->charts ) {
			$this->chart_data = $this->get_chart_data();
		}

		header( 'Content-Type: application/json' );
		echo json_encode( $this );
		wp_die();

	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.