DataObjects/Core_person_signup.php
[Pman.Core] / DataObjects / Core_person_signup.php
index c13b74c..bfd81d2 100644 (file)
@@ -1,4 +1,4 @@
- <?php
+<?php
 /**
  * Table Definition for Person
  */
@@ -14,16 +14,16 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
     public $id;                              // int(11)  not_null primary_key auto_increment
     public $email;                           // string(128)  not_null
     
-    public $name;                            // string(128)  not_null
+    //public $name;                            // string(128)  not_null
     public $firstname;                            // string(128)  not_null
     public $lastname;                            // string(128)  not_null
-    public $firstname_alt;                            // string(128)  not_null
-    public $lastname_alt;                            // string(128)  not_null
+    //public $firstname_alt;                            // string(128)  not_null
+    //public $lastname_alt;                            // string(128)  not_null
     
     
     public $honor;                            // string(128)  not_null
     public $verify_key;                      // int(11)
-
+    public $verified;
     
 
     public $created_dt;                      // datetime(19)  binary
@@ -31,6 +31,16 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
     
     
     
+    
+    function verify($key)
+    {
+        // if key matches verify_key
+        // copy into person or other entity...
+        // and delete....
+        
+        
+        
+    }
 }
 
     
\ No newline at end of file