function custom_registration_function()
{
    registration_form($email);
    if (isset($_POST['submit'])) {
        registration_validation($_POST['email']);
        // sanitize user form input
        global $email;
        $email = sanitize_email($_POST['email']);
        // call @function complete_registration to create the user
        // only when no WP_error is found
        complete_registration($email);
    }
}
Example #2
0
function custom_registration_function()
{
    if (isset($_POST['submit'])) {
        registration_validation($_POST['username'], $_POST['password'], $_POST['email']);
        // sanitize user form input
        global $username, $password, $email;
        $username = sanitize_user($_POST['username']);
        $password = esc_attr($_POST['password']);
        $email = sanitize_email($_POST['email']);
        // call @function complete_registration to create the user
        // only when no WP_error is found
        complete_registration($username, $password, $email);
    }
    registration_form($username, $password, $email);
}
function custom_user_registration_function()
{
    global $display_form;
    $display_form = TRUE;
    if (isset($_POST['submit'])) {
        registration_validation($_POST['email']);
        // sanitize user form input
        global $password, $cpassword, $email;
        $username = sanitize_user($_POST['email']);
        $email = sanitize_email($_POST['email']);
        // call @function complete_registration to create the user
        // only when no WP_error is found
        complete_registration($username, $email);
    }
    registration_form($email, $display_form);
}
function custom_registration_function()
{
    if (isset($_POST['submit'])) {
        registration_validation($_POST['username'], $_POST['password'], $_POST['email'], $_POST['address_1'], $_POST['fname'], $_POST['lname'], $_POST['city']);
        // sanitize user form input
        global $username, $password, $email, $address, $first_name, $last_name, $city;
        $username = sanitize_user($_POST['username']);
        $password = esc_attr($_POST['password']);
        $email = sanitize_email($_POST['email']);
        $address = esc_url($_POST['address_1']);
        $first_name = sanitize_text_field($_POST['fname']);
        $last_name = sanitize_text_field($_POST['lname']);
        $city = sanitize_text_field($_POST['city']);
        // call @function complete_registration to create the user
        // only when no WP_error is found
        complete_registration($username, $password, $email, $address, $first_name, $last_name, $city);
    }
    registration_form($username, $password, $email, $address, $first_name, $last_name, $city);
}
Example #5
0
function custom_registration_function()
{
    if (isset($_POST['submit'])) {
        registration_validation($_POST['username'], $_POST['password'], $_POST['email'], $_POST['website'], $_POST['fname'], $_POST['lname'], $_POST['nickname'], $_POST['bio']);
        // sanitize user form input
        global $username, $password, $email, $website, $first_name, $last_name, $nickname, $bio;
        $username = sanitize_user($_POST['username']);
        $password = esc_attr($_POST['password']);
        $email = sanitize_email($_POST['email']);
        $website = esc_url($_POST['website']);
        $first_name = sanitize_text_field($_POST['fname']);
        $last_name = sanitize_text_field($_POST['lname']);
        $nickname = sanitize_text_field($_POST['nickname']);
        $bio = esc_textarea($_POST['bio']);
        // call @function complete_registration to create the user
        // only when no WP_error is found
        complete_registration($username, $password, $email, $website, $first_name, $last_name, $nickname, $bio);
    }
    registration_form($username, $password, $email, $website, $first_name, $last_name, $nickname, $bio);
}
Example #6
0
function custom_registration_function()
{
    if (isset($_POST['submit'])) {
        registration_validation($_POST['username'], $_POST['password'], $_POST['email'], $_POST['fname'], $_POST['lname'], $_POST['bio']);
        global $username, $password, $email, $first_name, $last_name, $bio;
        $username = sanitize_user($_POST['username']);
        $password = esc_attr($_POST['password']);
        $email = sanitize_email($_POST['email']);
        $first_name = sanitize_text_field($_POST['fname']);
        $last_name = sanitize_text_field($_POST['lname']);
        $bio = esc_textarea($_POST['bio']);
        complete_registration($username, $password, $email, $first_name, $last_name, $bio);
    }
    registration_form($username, $password, $email, $first_name, $last_name, $bio);
}
function edit_event()
{
    if (isset($_POST['submit'])) {
        global $title, $sdate, $stime, $tdate, $repeat, $recur, $venue, $users, $desc, $status;
        $title = $_POST['event_title'];
        $sdate = $_POST['start_date'];
        $stime = $_POST['start_time'];
        $tdate = $_POST['to_date'];
        $ttime = $_POST['to_time'];
        $repeat = $_POST['event_repeats'];
        $recur = $_POST['event_recur'];
        $venue = $_POST['venue'];
        $users = $_POST['traditional'];
        $users = implode(",", (array) $user);
        $desc = $_POST['desc'];
        $status = 0;
        registration_validation($title, $sdate, $stime, $tdate, $ttime, $repeat, $recur, $venue, $users, $desc);
        complete_editeve($title, $sdate, $stime, $tdate, $ttime, $repeat, $recur, $venue, $users, $desc, $status);
    }
    edit_registration_form($eve_title, $eve_sdate, $eve_stime, $eve_tdate, $eve_ttime, $repeat, $recur, $eve_venue, $eve_users, $desc);
}