summaryrefslogtreecommitdiffstats
path: root/app/class/issue.class.php
blob: 67bf683667e768cb22ff8c4ce57c4b6590d1cabc (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
26
27
28
29
30
<?php

require_once "class/object.class.php";

/*
 * Pad issues
 */
class Issue extends Object
{
    /*
     * Constructor
     */
    function __construct($guid = null)
    {
        $cols = array(
            "guid",
            "number",
            "assignee",
            "unread",
            "desc",
            "due",
            "tags"
        );

        parent::__construct("issue", $cols);
        $this->loadObj($guid);
    }
}

?>