tasks/includes/t-data/item.inc.php
Emmanuel BENOîT b6b5cd982e Added description field to items
A description field has been added to items in the database, form fields
have been added to both item creation and modification. Removed some
French text that was still around.
2012-02-05 23:04:41 +01:00

43 lines
576 B
PHP

<?php
class Data_Item
{
public $id;
public $name;
public $description;
public $hasParent;
public $parent;
public $children;
public $depth;
public $lineage;
public $activeTasks;
public $inactiveTasks;
public function __construct( $id , $name )
{
$this->id = $id;
$this->name = $name;
}
public function getIdentifier( )
{
return $this->id;
}
public function getName( )
{
return $this->name;
}
public function getDepth( )
{
if ( $this->depth === null ) {
throw new Exception( "Method not implemented" );
}
return $this->depth;
}
}