| Current Path : /home/semix18/public_html/pogtech.pl/app/core/ |
| 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 ();
}