File: /home/fps/public_html/wp-content/plugins/wp-google-maps/includes/tables/class.heatmap-datatable.php
<?php
namespace WPGMZA;
if(!defined('ABSPATH'))
return;
class HeatmapDataTable extends DataTable
{
public function __construct($ajax_parameters=null, $datatable_options=null)
{
global $WPGMZA_TABLE_NAME_HEATMAPS;
DataTable::__construct($WPGMZA_TABLE_NAME_HEATMAPS, $ajax_parameters, $datatable_options);
}
public function getColumns()
{
return array(
'id' => __('ID', 'wp-google-maps'),
'dataset_name' => __('Name', 'wp-google-maps')
);
}
}