<?

class turnier_export_test {
	// objektname turnier_export_{$this->save} und datei: class.turnier_export_{$this->save}.php
	var $save	= 'test';
	var $short	= 'TEST';
	var $name	= 'Test Liga';
	var $website	= 'http://www.testliga.de';
	
	// fill automatic from xml while __construct()
	var $gamelist	= array();
	
	// Constructor
	function turnier_export_test()
	{
		$this->__construct();
	}
	
	function __construct()
	{
		$this->load_games();
	}
	
	function load_games() {
		// fill $this->gamelist array with content
		// explample: load from xml file
		
		/* minimum
		$this->gamelist = array(
			'cs_5on5' =>	array(
						'name'	=> 'CounterStrike 5on5'
					),
			'q3_1on1' =>	array(
						'name'	=> 'Quake 3 1on1'
					)
		);
		*/
	}
	
	// Export Select Formular zur Auswahl, welche Turniere exportiert werden sollen
	function select_export() {}
	
	// Turnierliste und Partydaten werden übergeben 
	// Erzeugen des Rankings
	function export($tourneys,$party) {}
	
}


?>