X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person_signup.php;h=4e989e49fa3dddabcdba41e015dcd9790e2d7e29;hb=e4ad9244ba6e2618f68f04dfaf9d0df18021246f;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=054584a7f916d14885c3fc91900ed18fbfc4f4c9;p=Pman.Core diff --git a/DataObjects/Core_person_signup.php b/DataObjects/Core_person_signup.php index e69de29b..4e989e49 100644 --- a/DataObjects/Core_person_signup.php +++ b/DataObjects/Core_person_signup.php @@ -0,0 +1,112 @@ +get("verify_key", $key)) { +// $p = DB_DataObject::factory('person'); +// $p->setFrom(array( +// 'honor' => $this->honor, +// 'name' => $this->name, +// 'email' => $this->email, +// 'firstname' => $this->firstname, +// 'lastname' => $this->lastname, +// 'firstname_alt' => $this->firstname_alt, +// 'lastname_alt' => $this->lastname_alt)); +// +// if ($p->insert()) { +// +// $temp_pwd = $p->generatePassword(); +// +// $this->delete(); +// +// //login +// @session_start(); +// +// $_SESSION['Hydra']['authUser'] = $p ? serialize($p) : false; +// +// //mail pwd +// $c = DB_DataObject::factory('core_email'); +// if (!$c->get('name', 'CORE_PERSON_SIGNUP_CONGRATULATION')) { +// $this->jerr("can not find template"); +// } +// $ret = $c->send(array( +// 'rcpts' => $this->email, +// 'honor' => $this->honor . ". " . $this->lastname, +// 'password' => $temp_pwd +// ), true); +// +// if (is_object($ret)) { +// return false; +// } +// return true; +// } else { +// return false; +// } +// } +// return false; +// } +// +// function convertTo($table) +// { +// $t = DB_DataObject::factory($table); +// $ret = $t->get('email', $this->email); +// if ($ret != 0) { +// return false; +// } else { +// $t->setFrom(array( +// 'honor' => $this->honor, +// 'name' => $this->name, +// 'email' => $this->email, +// 'firstname' => $this->firstname, +// 'lastname' => $this->lastname, +// 'firstname_alt' => $this->firstname_alt, +// 'lastname_alt' => $this->lastname_alt)); +// +// $t->insert(); +// return true; +// } +// } + + function sendVerification() + { + + $content = array( + 'template' => 'CORE_PERSON_SIGNUP_CONFIRM', + ); + + $sent = DB_DataObject::factory('core_email')->send($content); + + if(!is_object($sent)){ + return true; + } + + return false; + } +} +