本文整理汇总了PHP中MemberModel::modify_member方法的典型用法代码示例。如果您正苦于以下问题:PHP MemberModel::modify_member方法的具体用法?PHP MemberModel::modify_member怎么用?PHP MemberModel::modify_member使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MemberModel
的用法示例。
在下文中一共展示了MemberModel::modify_member方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: screen_modify
public function screen_modify($auth = "")
{
$btn = "";
$btn2 = "";
$this->file = "memberinfo_form.tpl";
// データベースを操作します。
$MemberModel = new MemberModel();
$PrememberModel = new PrememberModel();
if ($this->is_system && $this->action == "form") {
$_SESSION[_MEMBER_AUTHINFO] = $MemberModel->get_member_data_id($_GET['id']);
}
// フォーム要素のデフォルト値を設定
$date_defaults = ['Y' => substr($_SESSION[_MEMBER_AUTHINFO]['birthday'], 0, 4), 'm' => substr($_SESSION[_MEMBER_AUTHINFO]['birthday'], 4, 2), 'd' => substr($_SESSION[_MEMBER_AUTHINFO]['birthday'], 6, 2)];
$this->form->setDefaults(['username' => $_SESSION[_MEMBER_AUTHINFO]['username'], 'last_name' => $_SESSION[_MEMBER_AUTHINFO]['last_name'], 'first_name' => $_SESSION[_MEMBER_AUTHINFO]['first_name'], 'ken' => $_SESSION[_MEMBER_AUTHINFO]['ken'], 'birthday' => $date_defaults]);
$this->make_form_controle();
// フォームの妥当性検証
if (!$this->form->validate()) {
$this->action = "form";
}
if ($this->action == "form") {
$this->title = '更新画面';
$this->next_type = 'modify';
$this->next_action = 'confirm';
$btn = '確認画面へ';
} else {
if ($this->action == "confirm") {
$this->title = '確認画面';
$this->next_type = 'modify';
$this->next_action = 'complete';
$this->form->freeze();
$btn = '更新する';
$btn2 = '戻る';
} else {
if ($this->action == "complete" && isset($_POST['submit2']) && $_POST['submit2'] == '戻る') {
$this->title = '更新画面';
$this->next_type = 'modify';
$this->next_action = 'confirm';
$btn = '確認画面へ';
} else {
if ($this->action == "complete" && isset($_POST['submit']) && $_POST['submit'] == '更新する') {
$userdata = $this->form->getSubmitValues();
if (($MemberModel->check_username($userdata) || $PrememberModel->check_username($userdata)) && $_SESSION[_MEMBER_AUTHINFO]['username'] != $userdata['username']) {
$this->next_type = 'modify';
$this->next_action = 'confirm';
$this->title = '更新画面';
$this->message = "メールアドレスは登録済みです。";
$btn = '確認画面へ';
} else {
$this->title = '更新完了画面';
$userdata['id'] = $_SESSION[_MEMBER_AUTHINFO]['id'];
// システム側から利用するときに利用
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']);
$MemberModel->modify_member($userdata);
$this->message = "会員情報を修正しました。";
$this->file = "message.tpl";
if ($this->is_system) {
unset($_SESSION[_MEMBER_AUTHINFO]);
} else {
$_SESSION[_MEMBER_AUTHINFO] = $MemberModel->get_member_data_id($_SESSION[_MEMBER_AUTHINFO]['id']);
}
}
}
}
}
}
$this->form->addElement('submit', 'submit', $btn);
$this->form->addElement('submit', 'submit2', $btn2);
$this->form->addElement('reset', 'reset', '取り消し');
$this->view_display();
}
示例2: screen_member_modify
//.........这里部分代码省略.........
if (!$this->check_area($data, 3)) {
$this->area = '希望のエリアを一つ以上選択してください';
$this->action = "form";
}
if (!$this->check_project_member($data)) {
$this->project = '希望の職種は一つ以上選択してください';
$this->action = "form";
}
if (!$this->form->validate()) {
$this->action = "form";
}
} else {
if ($this->action != "view") {
$this->action = "form";
}
}
if ($this->action == "view" && $this->is_system) {
$this->file = "system_member_detail.tpl";
$this->title = "登録情報";
$this->message = "--サイトメンバーの詳細を表示しています--";
$regist_project = $this->make_view_project_type($_SESSION[_MEMBER_AUTHINFO]['project_type']);
$this->view->assign('id', $_SESSION[_MEMBER_AUTHINFO]['id']);
$this->view->assign('birthday', $_SESSION[_MEMBER_AUTHINFO]['birthday']);
$this->view->assign('gender', $_SESSION[_MEMBER_AUTHINFO]['gender']);
$this->view->assign('hope_start', $_SESSION[_MEMBER_AUTHINFO]['hope_start']);
$this->view->assign('data', $regist_project);
$btn1 = "更新";
$btn2 = "削除";
$this->form->freeze();
}
if ($this->action == "form") {
$this->file = "member_modify.tpl";
$this->title = "登録情報の修正";
$this->message = "登録された情報の修正できます!";
$this->next_type = "modify";
$this->next_action = "confirm";
$btn1 = "確認";
$btn2 = "";
} else {
if ($this->action == "confirm") {
$this->form->freeze();
$this->file = "member_modify_freeze.tpl";
$this->title = "登録情報の修正";
$this->message = "下記で宜しいでしょうか?";
$this->next_type = "modify";
$this->next_action = "complete";
$btn1 = "登録";
$btn2 = "戻る";
} else {
if ($this->action == "complete" && isset($_POST['submit2']) && $_POST['submit2'] == "戻る") {
$this->file = "member_modify.tpl";
$this->title = "登録情報の修正";
$this->message = "登録された情報の修正できます!";
$this->next_type = "modify";
$this->next_action = "confirm";
$btn1 = "確認";
$btn2 = "";
} else {
if ($this->action == "complete" && isset($_POST['submit1']) && $_POST['submit1'] == "登録") {
$MemberModel = new MemberModel();
$PrememberModel = new PrememberModel();
if ($_SESSION[_MEMBER_AUTHINFO]['mail'] != $data['mail'] && ($MemberModel->check_member($data) || $PrememberModel->check_member($data))) {
$this->file = "member_modify.tpl";
$this->title = "登録画面";
$this->message = "!!!すでにこのメールアドレスは登録されています!!!";
$this->next_type = "modify";
$this->next_action = "confirm";
$btn1 = "確認";
$btn2 = "";
} else {
$data['birthday'] = sprintf("%04d%02d%02d", $data['birthday']['Y'], $data['birthday']['m'], $data['birthday']['d']);
$data['gender'] = sprintf("%1d", $data['gender']['gender']);
$data['area_type'] = $this->data_area_input($data);
$data['project_type'] = $this->data_project_input($data);
$data['hope_start'] = sprintf('%04d%02d%02d', $data['hope_start']['Y'], $data['hope_start']['m'], $data['hope_start']['d']);
$data['id'] = $_SESSION[_MEMBER_AUTHINFO]['id'];
$MemberModel->modify_member($data);
if ($this->is_system) {
$this->title = "更新完了";
$this->message = "会員情報を更新しました";
$this->URL = "system.php?type=member_list";
$this->URL .= $this->add_pageID();
} else {
$this->auth->auth_member_ok($data);
$this->title = "登録情報の修正が完了しました。";
$this->message = "下記よりトップ画面へお戻りください";
}
$this->file = "message.tpl";
}
}
}
}
}
$this->view->assign('area_error', $area);
$this->view->assign('project_error', $project);
$this->form->addElement('submit', 'submit1', $btn1);
$this->form->addElement('submit', 'submit2', $btn2);
$this->form->addElement('reset', 'reset', '取り消し');
$this->view_display();
}