Your IP : 216.73.216.6


Current Path : /home/hsabaeej/public_html/modules/mod_flexi_customcode/
Upload File :
Current File : /home/hsabaeej/public_html/modules/mod_flexi_customcode/helper.php

<?php
/**
* Flexi Custom Code - Joomla Module
* Version			: 2.1
* Created by		: RBO Team > Project::: RumahBelanja.com & AppsNity.com
* Created on		: v1.0 - December 16th, 2010 (Joomla 1.6.x)
					  v1.2 - August 21th, 2011 (Joomla 1.7.x) - v1.2.1 December 24th, 2011 (Joomla 2.5)
					  V.1.3.1 - September 30, 2012 - v1.4 - August 2, 2014 - Joomla 3.x.x
					  v2.0 - Sept 7, 2014
* Updated			: v2.1 - Oct 21, 2014
* Package			: Joomla 3.x.x
* License			: GNU General Public License version 2 or later; see LICENSE.txt
*/


// no direct access
defined('_JEXEC') or die('Restricted access');

	class modFlexiCustomCode {
		public static function parsePHPviaFile($codearea) {
			$tmpfname = tempnam(JPATH_SITE."/tmp", "html");
			$handle = fopen($tmpfname, "w");
			fwrite($handle, $codearea, strlen($codearea));
			fclose($handle);
			include_once($tmpfname);
			unlink($tmpfname);
		}
	}

?>