Einchecken des OnlineStands

This commit is contained in:
2016-09-07 14:36:03 +00:00
parent feed788c84
commit 53295535eb
241 changed files with 69161 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
class viewClass_abstract
{
protected static $_instance = null;
/**
* Konstruktor
*/
public function __construct( )
{
$this -> _instance = $this;
}
/**
* Destruktor
*/
public function __destruct( )
{
}
public function getInstance( )
{
if ( ! isset( self::$_instance ) )
{
$class = __CLASS__;
$instance = new $class;
}
return self::$_instance;
}
}
?>