<?php

namespace WPGMZA;

if(!defined('ABSPATH'))
	return;

class ImageoverlayDataTable extends DataTable{
	public function __construct($ajax_parameters=null, $datatable_options=null){
		global $WPGMZA_TABLE_NAME_IMAGE_OVERLAYS;
		DataTable::__construct($WPGMZA_TABLE_NAME_IMAGE_OVERLAYS, $ajax_parameters, $datatable_options);
	}
	
	public function getColumns(){
		return array(
			'id'			=> __('ID',				'wp-google-maps'),
			'name'			=> __('Name', 			'wp-google-maps')
		);
	}
}