diff options
author | Malf Furious <m@lfurio.us> | 2015-12-31 20:13:26 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2015-12-31 20:13:26 -0500 |
commit | 3231db3d578c510d130b1377d3809228a273b118 (patch) | |
tree | da6412d4fad7f30f6f4ed1e9dd3cda5e253d8fe0 | |
parent | 00b391ab20e1b0d6e65bfe907819bceef3d1ed84 (diff) | |
download | scrott-3231db3d578c510d130b1377d3809228a273b118.tar.gz scrott-3231db3d578c510d130b1377d3809228a273b118.zip |
+ Added class file for Pad table
-rw-r--r-- | app/class/pad.class.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/class/pad.class.php b/app/class/pad.class.php new file mode 100644 index 0000000..335ef63 --- /dev/null +++ b/app/class/pad.class.php @@ -0,0 +1,26 @@ +<?php + +require_once "class/object.class.php"; + +/* + * Scrott pads + */ +class Pad extends Object +{ + /* + * Constructor + */ + function __construct($guid = null) + { + $cols = array( + "guid", + "stage", + "nextIssueNumber" + ); + + parent::__construct("pad", $cols); + $this->loadObj($guid); + } +} + +?> |