mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-25 05:22:59 +00:00
Finish user preferences email address saving
This commit is contained in:
parent
3d728542fb
commit
23a2e24238
3 changed files with 47 additions and 25 deletions
|
@ -3831,6 +3831,11 @@ register_module([
|
||||||
"change-password" => "Password changed successfully!"
|
"change-password" => "Password changed successfully!"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if(!isset($env->user_data->emailAddress)) {
|
||||||
|
$env->user_data->emailAddress = "";
|
||||||
|
save_userdata();
|
||||||
|
}
|
||||||
|
|
||||||
$content = "<h2>User Preferences</h2>\n";
|
$content = "<h2>User Preferences</h2>\n";
|
||||||
if(isset($_GET["success"]) && $_GET["success"] === "yes")
|
if(isset($_GET["success"]) && $_GET["success"] === "yes")
|
||||||
{
|
{
|
||||||
|
@ -3838,18 +3843,24 @@ register_module([
|
||||||
}
|
}
|
||||||
$content .= "<label for='username'>Username:</label>\n";
|
$content .= "<label for='username'>Username:</label>\n";
|
||||||
$content .= "<input type='text' name='username' value='$env->user' readonly />\n";
|
$content .= "<input type='text' name='username' value='$env->user' readonly />\n";
|
||||||
|
$content .= "<form method='post' action='?action=save-preferences'>\n";
|
||||||
|
$content .= " <label for='email'>Email Address:</label>\n";
|
||||||
|
$content .= " <input type='email' placeholder='e.g. bob@bobsrockets.com' value='{$env->user_data->emailAddress}' />\n";
|
||||||
|
$content .= " <p><small>Used to send you notifications etc. Never shared with anyone except $settings->admindetails_name, $settings->sitename's administrator.</small></p>\n";
|
||||||
|
$content .= " <input type='submit' value='Save Preferences' />\n";
|
||||||
|
$content .= "</form>\n";
|
||||||
$content .= "<h3>Change Password</h3\n>";
|
$content .= "<h3>Change Password</h3\n>";
|
||||||
$content .= "<form method='post' action='?action=change-password'>\n";
|
$content .= "<form method='post' action='?action=change-password'>\n";
|
||||||
$content .= "<label for='old-pass'>Current Password:</label>\n";
|
$content .= " <label for='old-pass'>Current Password:</label>\n";
|
||||||
$content .= "<input type='password' name='current-pass' />\n";
|
$content .= " <input type='password' name='current-pass' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<label for='new-pass'>New Password:</label>\n";
|
$content .= " <label for='new-pass'>New Password:</label>\n";
|
||||||
$content .= "<input type='password' name='new-pass' />\n";
|
$content .= " <input type='password' name='new-pass' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<label for='new-pass-confirm'>Confirm New Password:</label>\n";
|
$content .= " <label for='new-pass-confirm'>Confirm New Password:</label>\n";
|
||||||
$content .= "<input type='password' name='new-pass-confirm' />\n";
|
$content .= " <input type='password' name='new-pass-confirm' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<input type='submit' value='Change Password' />\n";
|
$content .= " <input type='submit' value='Change Password' />\n";
|
||||||
$content .= "</form>\n";
|
$content .= "</form>\n";
|
||||||
|
|
||||||
exit(page_renderer::render_main("User Preferences - $settings->sitename", $content));
|
exit(page_renderer::render_main("User Preferences - $settings->sitename", $content));
|
||||||
|
@ -3881,14 +3892,14 @@ register_module([
|
||||||
$env->user_data->emailAddress = $_POST["email-address"];
|
$env->user_data->emailAddress = $_POST["email-address"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Save the user's preferences
|
||||||
if(!save_userdata())
|
if(!save_userdata())
|
||||||
{
|
{
|
||||||
http_response_code(503);
|
http_response_code(503);
|
||||||
exit(page_renderer::render_main("Error Saving Preferences - $settings->sitename", "<p>$settings->sitename had some trouble saving your preferences! Please contact $settings->admindetails_name, $settings->sitename's administrator and tell them about this error if it still occurs in 5 minutes. They can be contacted by email at this address: <a href='mailto:" . hide_email($settings->admindetails_email) . "'>" . hide_email($settings->admindetails_email) . "</a>.</p>"));
|
exit(page_renderer::render_main("Error Saving Preferences - $settings->sitename", "<p>$settings->sitename had some trouble saving your preferences! Please contact $settings->admindetails_name, $settings->sitename's administrator and tell them about this error if it still occurs in 5 minutes. They can be contacted by email at this address: <a href='mailto:" . hide_email($settings->admindetails_email) . "'>" . hide_email($settings->admindetails_email) . "</a>.</p>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exit(page_renderer::render_main("Preferences Saved Successfully - $settings->sitename", "<p>Your preferences have been saved successfully! You could go back your <a href='?action=user-preferences'>preferences page</a>, or on to the <a href='?page=" . rawurlencode($settings->defaultpage) . "'>$settings->defaultpage</a>.</p>"));
|
||||||
exit(page_renderer::render_main("Preferences Saved Successfully - $settings->sitename", "<p></p>"));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
"author": "Starbeamrainbowlabs",
|
"author": "Starbeamrainbowlabs",
|
||||||
"description": "Adds a user preferences page, letting pople do things like change their email address and password.",
|
"description": "Adds a user preferences page, letting pople do things like change their email address and password.",
|
||||||
"id": "feature-user-preferences",
|
"id": "feature-user-preferences",
|
||||||
"lastupdate": 1485463715,
|
"lastupdate": 1486756068,
|
||||||
"optional": false
|
"optional": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,6 +39,11 @@ register_module([
|
||||||
"change-password" => "Password changed successfully!"
|
"change-password" => "Password changed successfully!"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if(!isset($env->user_data->emailAddress)) {
|
||||||
|
$env->user_data->emailAddress = "";
|
||||||
|
save_userdata();
|
||||||
|
}
|
||||||
|
|
||||||
$content = "<h2>User Preferences</h2>\n";
|
$content = "<h2>User Preferences</h2>\n";
|
||||||
if(isset($_GET["success"]) && $_GET["success"] === "yes")
|
if(isset($_GET["success"]) && $_GET["success"] === "yes")
|
||||||
{
|
{
|
||||||
|
@ -46,18 +51,24 @@ register_module([
|
||||||
}
|
}
|
||||||
$content .= "<label for='username'>Username:</label>\n";
|
$content .= "<label for='username'>Username:</label>\n";
|
||||||
$content .= "<input type='text' name='username' value='$env->user' readonly />\n";
|
$content .= "<input type='text' name='username' value='$env->user' readonly />\n";
|
||||||
|
$content .= "<form method='post' action='?action=save-preferences'>\n";
|
||||||
|
$content .= " <label for='email'>Email Address:</label>\n";
|
||||||
|
$content .= " <input type='email' placeholder='e.g. bob@bobsrockets.com' value='{$env->user_data->emailAddress}' />\n";
|
||||||
|
$content .= " <p><small>Used to send you notifications etc. Never shared with anyone except $settings->admindetails_name, $settings->sitename's administrator.</small></p>\n";
|
||||||
|
$content .= " <input type='submit' value='Save Preferences' />\n";
|
||||||
|
$content .= "</form>\n";
|
||||||
$content .= "<h3>Change Password</h3\n>";
|
$content .= "<h3>Change Password</h3\n>";
|
||||||
$content .= "<form method='post' action='?action=change-password'>\n";
|
$content .= "<form method='post' action='?action=change-password'>\n";
|
||||||
$content .= "<label for='old-pass'>Current Password:</label>\n";
|
$content .= " <label for='old-pass'>Current Password:</label>\n";
|
||||||
$content .= "<input type='password' name='current-pass' />\n";
|
$content .= " <input type='password' name='current-pass' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<label for='new-pass'>New Password:</label>\n";
|
$content .= " <label for='new-pass'>New Password:</label>\n";
|
||||||
$content .= "<input type='password' name='new-pass' />\n";
|
$content .= " <input type='password' name='new-pass' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<label for='new-pass-confirm'>Confirm New Password:</label>\n";
|
$content .= " <label for='new-pass-confirm'>Confirm New Password:</label>\n";
|
||||||
$content .= "<input type='password' name='new-pass-confirm' />\n";
|
$content .= " <input type='password' name='new-pass-confirm' />\n";
|
||||||
$content .= "<br />\n";
|
$content .= " <br />\n";
|
||||||
$content .= "<input type='submit' value='Change Password' />\n";
|
$content .= " <input type='submit' value='Change Password' />\n";
|
||||||
$content .= "</form>\n";
|
$content .= "</form>\n";
|
||||||
|
|
||||||
exit(page_renderer::render_main("User Preferences - $settings->sitename", $content));
|
exit(page_renderer::render_main("User Preferences - $settings->sitename", $content));
|
||||||
|
@ -89,14 +100,14 @@ register_module([
|
||||||
$env->user_data->emailAddress = $_POST["email-address"];
|
$env->user_data->emailAddress = $_POST["email-address"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Save the user's preferences
|
||||||
if(!save_userdata())
|
if(!save_userdata())
|
||||||
{
|
{
|
||||||
http_response_code(503);
|
http_response_code(503);
|
||||||
exit(page_renderer::render_main("Error Saving Preferences - $settings->sitename", "<p>$settings->sitename had some trouble saving your preferences! Please contact $settings->admindetails_name, $settings->sitename's administrator and tell them about this error if it still occurs in 5 minutes. They can be contacted by email at this address: <a href='mailto:" . hide_email($settings->admindetails_email) . "'>" . hide_email($settings->admindetails_email) . "</a>.</p>"));
|
exit(page_renderer::render_main("Error Saving Preferences - $settings->sitename", "<p>$settings->sitename had some trouble saving your preferences! Please contact $settings->admindetails_name, $settings->sitename's administrator and tell them about this error if it still occurs in 5 minutes. They can be contacted by email at this address: <a href='mailto:" . hide_email($settings->admindetails_email) . "'>" . hide_email($settings->admindetails_email) . "</a>.</p>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exit(page_renderer::render_main("Preferences Saved Successfully - $settings->sitename", "<p>Your preferences have been saved successfully! You could go back your <a href='?action=user-preferences'>preferences page</a>, or on to the <a href='?page=" . rawurlencode($settings->defaultpage) . "'>$settings->defaultpage</a>.</p>"));
|
||||||
exit(page_renderer::render_main("Preferences Saved Successfully - $settings->sitename", "<p></p>"));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue