Your IP : 216.73.216.43


Current Path : /home/cbequiperp/www/components/com_flexicontent/classes/helpers/
Upload File :
Current File : /home/cbequiperp/www/components/com_flexicontent/classes/helpers/csv.php

<?php
defined( '_JEXEC' ) or die( 'Restricted access' );




class flexicontent_csv_data
{
	var $csv_string;
	
	function __construct()
	{
	}
	
	function getText()
	{
		return $this->csv_string;
	}
}



class flexicontent_csv
{
	function __construct()
	{
	}

	function parseFile($csvfile)
	{
		$csv_data = new flexicontent_csv_data();
		$csv_data->csv_string = file_get_contents($csvfile);

		return $csv_data;
	}	
}