X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person_signup.php;h=417ea05a1fa823fbdcb706d09bfe001480c8e47c;hb=68ba5ab44c147c86688edcf71275be29e81a189a;hp=588838e9edc0d53840dc857023ef8bbbe88b089a;hpb=4b7e60e4b00639f2a4032acf51e0e81ac57f8388;p=Pman.Core diff --git a/DataObjects/Core_person_signup.php b/DataObjects/Core_person_signup.php index 588838e9..417ea05a 100644 --- a/DataObjects/Core_person_signup.php +++ b/DataObjects/Core_person_signup.php @@ -1,26 +1,10 @@ -CREATE TABLE core_person_signup ( - id int(11) NOT NULL auto_increment, - PRIMARY KEY (id) -) ; - - -ALTER TABLE core_person_signup ADD COLUMN name varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN honor varchar(32) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN firstname varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN lastname varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN firstname_alt varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN lastname_alt varchar(128) NOT NULL DEFAULT ''; - -ALTER TABLE core_person_signup ADD COLUMN email varchar(256) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN verify_key varchar(256) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN created_dt DATETIME NOT NULL; 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; +// } +// } - public $created_dt; // datetime(19) binary + function sendVerification($roo) + { + + $content = array( + 'template' => 'CORE_PERSON_SIGNUP_VERIFICATION', + 'person' => $this, + 'serverName' => $_SERVER['SERVER_NAME'], + 'baseURL' => $roo->baseURL + ); + $sent = DB_DataObject::factory('core_email')->send($content); + + if(!is_object($sent)){ + return true; + } + + return false; + } - - + function getEmailFrom() + { + if (empty($this->name)) { + return $this->email; + } + return '"' . addslashes($this->name) . '" <' . $this->email . '>'; + } } - \ No newline at end of file