Subversion-Projekte lars-tiefland.inventar

Revision

Revision 5 | Zur aktuellen Revision | Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
<?php
2
 
3
	//$Id$
4
 
5
/**
6
 * @author Lars Tiefland <ltiefland@gmail.com>
7
 * @copyright 2008
8
 * @project Inventar Datenbank
9
 */
10
 
11
	class hardware
12
	{
13
		private $id;
14
		private $name;
15
		private $type_id;
16
 
17
		function __construct($id=0)
18
		{
19
			if($id)
20
			{
21
 
22
			}
23
			else
24
			{
25
				$this->id=0;
26
				$this->name='';
27
				$this->type_id=0;
28
			}
29
		}
30
	}
31
 
32
?>