本文整理汇总了PHP中MemberModel::regist_member方法的典型用法代码示例。如果您正苦于以下问题:PHP MemberModel::regist_member方法的具体用法?PHP MemberModel::regist_member怎么用?PHP MemberModel::regist_member使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MemberModel
的用法示例。
在下文中一共展示了MemberModel::regist_member方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: screen_regist
public function screen_regist($auth = "")
{
$btn = "";
$btn2 = "";
$this->file = "memberinfo_form.tpl";
// デフォルト
// フォーム要素のデフォルト値を設定
$date_defaults = ['Y' => date('Y'), 'm' => date('m'), 'd' => date('d')];
$this->form->setDefaults(['birthday' => $date_defaults]);
$this->make_form_controle();
// フォームの妥当性検証
if (!$this->form->validate()) {
$this->action = "form";
}
if ($this->action == "form") {
$this->title = '新規登録画面';
$this->next_type = 'regist';
$this->next_action = 'confirm';
$btn = '確認画面へ';
} else {
if ($this->action == "confirm") {
$this->title = '確認画面';
$this->next_type = 'regist';
$this->next_action = 'complete';
$this->form->freeze();
$btn = '登録する';
$btn2 = '戻る';
} else {
if ($this->action == "complete" && isset($_POST['submit2']) && $_POST['submit2'] == '戻る') {
$this->title = '新規登録画面';
$this->next_type = 'regist';
$this->next_action = 'confirm';
$btn = '確認画面へ';
} else {
if ($this->action == "complete" && isset($_POST['submit']) && $_POST['submit'] == '登録する') {
// データベースを操作します。
$PrememberModel = new PrememberModel();
// データベースを操作します。
$MemberModel = new MemberModel();
$userdata = $this->form->getSubmitValues();
if ($MemberModel->check_username($userdata) || $PrememberModel->check_username($userdata)) {
$this->title = '新規登録画面';
$this->message = "メールアドレスは登録済みです。";
$this->next_type = 'regist';
$this->next_action = 'confirm';
$btn = '確認画面へ';
} else {
// システム側から利用するときに利用
if ($this->is_system && is_object($auth)) {
$userdata['password'] = $auth->get_hashed_password($userdata['password']);
} else {
$userdata['password'] = $this->auth->get_hashed_password($userdata['password']);
}
$userdata['birthday'] = sprintf("%04d%02d%02d", $userdata['birthday']['Y'], $userdata['birthday']['m'], $userdata['birthday']['d']);
if ($this->is_system) {
$MemberModel->regist_member($userdata);
$this->title = '登録完了画面';
$this->message = "登録を完了しました。";
} else {
$userdata['link_pass'] = hash('sha256', uniqid(rand(), 1));
$PrememberModel->regist_premember($userdata);
$this->mail_to_premember($userdata);
$this->title = 'メール送信完了画面';
$this->message = "登録されたメールアドレスへ確認のためのメールを送信しました。<BR>";
$this->message .= "メール本文に記載されているURLにアクセスして登録を完了してください。<BR>";
}
$this->file = "message.tpl";
}
}
}
}
}
$this->form->addElement('submit', 'submit', $btn);
$this->form->addElement('submit', 'submit2', $btn2);
$this->form->addElement('reset', 'reset', '取り消し');
$this->view_display();
}