LLMS_Analytics_Widget::output()
Contents
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(); }
Expand full source code Collapse full source code View on GitHub