diff options
Diffstat (limited to 'app/class/issue.class.php')
-rw-r--r-- | app/class/issue.class.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/class/issue.class.php b/app/class/issue.class.php new file mode 100644 index 0000000..90a095c --- /dev/null +++ b/app/class/issue.class.php @@ -0,0 +1,28 @@ +<?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" + ); + + parent::__construct("issue", $cols); + $this->loadObj($guid); + } +} + +?> |