65 lines
3.4 KiB
PHP
65 lines
3.4 KiB
PHP
<?php
|
|
/* handle field output */
|
|
function wppb_password_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
|
|
$item_title = apply_filters( 'wppb_'.$form_location.'_password_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
|
|
$item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
|
|
|
|
if ( $form_location != 'back_end' ){
|
|
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
|
|
|
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
|
$error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
|
|
|
|
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
|
|
|
$output = '
|
|
<label for="passw1">' . $item_title.$error_mark . '</label>
|
|
<input class="text-input" name="passw1" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="password" id="passw1" value="" autocomplete="off" '. $extra_attr .'/>';
|
|
if( !empty( $item_description ) )
|
|
$output .= '<span class="wppb-description-delimiter">'.$item_description.' '.wppb_password_length_text().'</span>';
|
|
else
|
|
$output .= '<span class="wppb-description-delimiter">'.wppb_password_length_text().'</span>';
|
|
|
|
/* if we have active the password strength checker */
|
|
$output .= wppb_password_strength_checker_html();
|
|
|
|
}
|
|
|
|
return apply_filters( 'wppb_'.$form_location.'_password', $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
|
|
}
|
|
add_filter( 'wppb_output_form_field_default-password', 'wppb_password_handler', 10, 6 );
|
|
|
|
/* handle field validation */
|
|
function wppb_check_password_value( $message, $field, $request_data, $form_location ){
|
|
if ( $form_location == 'register' ){
|
|
if ( ( isset( $request_data['passw1'] ) && ( trim( $request_data['passw1'] ) == '' ) ) && ( $field['required'] == 'Yes' ) )
|
|
return wppb_required_field_error($field["field-title"]);
|
|
|
|
elseif ( !isset( $request_data['passw1'] ) && ( $field['required'] == 'Yes' ) )
|
|
return wppb_required_field_error($field["field-title"]);
|
|
}
|
|
|
|
if ( trim( $request_data['passw1'] ) != '' ){
|
|
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
|
|
|
if( wppb_check_password_length( $request_data['passw1'] ) )
|
|
return '<br/>'. sprintf( __( "The password must have the minimum length of %s characters", "profile-builder" ), $wppb_generalSettings['minimum_password_length'] );
|
|
|
|
|
|
if( wppb_check_password_strength() ){
|
|
return '<br/>' . sprintf( __( "The password must have a minimum strength of %s", "profile-builder" ), wppb_check_password_strength() );
|
|
}
|
|
}
|
|
|
|
return $message;
|
|
}
|
|
add_filter( 'wppb_check_form_field_default-password', 'wppb_check_password_value', 10, 4 );
|
|
|
|
/* handle field save */
|
|
function wppb_userdata_add_password( $userdata, $global_request ){
|
|
if ( isset( $global_request['passw1'] ) && ( trim( $global_request['passw1'] ) != '' ) )
|
|
$userdata['user_pass'] = trim( $global_request['passw1'] );
|
|
|
|
return $userdata;
|
|
}
|
|
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_password', 10, 2 ); |