<?php
/*
* This file is part of the IndoRegion package.
*
* (c) Azis Hapidin <azishapidin.com | [email protected]>
*
*/
namespace AzisHapidin\IndoRegion;
use ParseCsv\Csv;
/**
* Get raw data from CSV Files on /src/data/csv.
*/
class RawDataGetter
{
/**
* Raw Data file path.
*
* @return string
*/
protected static $path = __DIR__.'/data/csv';
/**
* Get provinces data.
*
* @return array
*/
public static function getProvinces()
{
$result = self::getCsvData(self::$path.'/provinces.csv');
return $result;
}
/**
* Get regencies data.
*
* @return array
*/
public static function getRegencies()
{
$result = self::getCsvData(self::$path.'/regencies.csv');
return $result;
}
/**
* Get districts data.
*
* @return array
*/
public static function getDistricts()
{
$result = self::getCsvData(self::$path.'/districts.csv');
return $result;
}
/**
* Get villages data.
*
* @return array
*/
public static function getVillages()
{
$result = self::getCsvData(self::$path.'/villages.csv');
return $result;
}
/**
* Get Data from CSV.
*
* @param string $path File Path.
*
* @return array
*/
public static function getCsvData($path = '')
{
$csv = new Csv();
$csv->auto($path);
return $csv->data;
}
}
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]