Your IP : 216.73.216.176


Current Path : /home/semix18/public_html/pogtech.pl/app/core/
Upload File :
Current File : /home/semix18/public_html/pogtech.pl/app/core/baseAction.class.php

<?php /*windu.org core*/
abstract class baseAction
{
	function __construct()
	{
		$this->POST = $_POST;
		$this->GET = $_GET;
	}
	
	abstract function execute ();
}