diff --git a/resources/inc/class.resources_tracking.inc.php b/resources/inc/class.resources_tracking.inc.php new file mode 100644 index 0000000000..f68a99df33 --- /dev/null +++ b/resources/inc/class.resources_tracking.inc.php @@ -0,0 +1,45 @@ +appname = 'resources'; + $this->id_field = 'res_id'; + + $this->field2history = array( + 'res_id' => 'res_id', + 'name' => 'name', + 'short_description' => 'short_description', + 'cat_id' => 'cat_id', + 'quantity' => 'quantity', + 'useable' => 'useable', + 'location' => 'location', + 'storage_info' => 'storage_info', + 'bookable' => 'bookable', + 'buyable' => 'buyable', + 'prize' => 'prize', + 'long_description' => 'long_description', + 'inventory_number' => 'inventory_number', + 'accessory_of' => 'accessory_of' + ); + parent::__construct($this->appname); + } +}