summaryrefslogtreecommitdiffstats
path: root/app/class/stage.class.php
blob: a2dfba58046abc883710ae5e1cf12c6bdb5578cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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);
    }
}

?>