<?php require_once "class/object.class.php"; /* * Pad stages */ class Stage extends Object { /* * Constructor */ function __construct($guid = null) { $cols = array( "guid", "stage" ); parent::__construct("stage", $cols); $this->loadObj($guid); } } ?>