summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2015-12-31 23:02:23 -0500
committerMalf Furious <m@lfurio.us>2015-12-31 23:02:23 -0500
commit231a312a77f7f774b48fb5700bea780b274ed82a (patch)
treec42363ac737a7cfce41ba1b1d0a11955049ab621
parent3231db3d578c510d130b1377d3809228a273b118 (diff)
downloadscrott-231a312a77f7f774b48fb5700bea780b274ed82a.tar.gz
scrott-231a312a77f7f774b48fb5700bea780b274ed82a.zip
+ Added class file for stage table
-rw-r--r--app/class/stage.class.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/class/stage.class.php b/app/class/stage.class.php
new file mode 100644
index 0000000..a2dfba5
--- /dev/null
+++ b/app/class/stage.class.php
@@ -0,0 +1,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);
+ }
+}
+
+?>