summaryrefslogblamecommitdiffstats
path: root/app/class/stage.class.php
blob: a2dfba58046abc883710ae5e1cf12c6bdb5578cf (plain) (tree)
























                                            
<?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);
    }
}

?>