MP_Reports::do_chart_city()

Sity chart report.

Contents


Source Source

File: mortgage-platform/Inc/Callback/MP_Reports.php

	protected function do_chart_city() {

		$allcity = $this->get_all_city();
		$city    = $this->get_city_count( $allcity );

		$array = array( array( 'City', 'Amount' ) );
		foreach ( $city as $value ) {
			array_push( $array, array( $value[1], $value[4] ) );
		}

		return wp_send_json( $array );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.