-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-change_username.php
88 lines (84 loc) · 3.27 KB
/
user-change_username.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
// meta tag robots
osc_add_hook('header','market_nofollow_construct');
osc_enqueue_script('jquery-validate');
market_add_body_class('user user-profile');
osc_add_hook('before-main','sidebar');
function sidebar(){
osc_current_web_theme_path('user-sidebar.php');
}
osc_add_filter('meta_title_filter','custom_meta_title');
function custom_meta_title($data){
return __('Change username', 'market');;
}
osc_current_web_theme_path('header.php') ;
$osc_user = osc_user();
?>
<h1><?php _e('Change username', 'market'); ?></h1>
<script type="text/javascript">
$(document).ready(function() {
$('form#change-username').validate({
rules: {
s_username: {
required: true
}
},
messages: {
s_username: {
required: '<?php echo osc_esc_js(__("Username: this field is required", "market")); ?>.'
}
},
errorLabelContainer: "#error_list",
wrapper: "li",
invalidHandler: function(form, validator) {
$('html,body').animate({ scrollTop: $('h1').offset().top }, { duration: 250, easing: 'swing'});
},
submitHandler: function(form){
$('button[type=submit], input[type=submit]').attr('disabled', 'disabled');
form.submit();
}
});
var cInterval;
$("#s_username").keydown(function(event) {
if($("#s_username").attr("value")!='') {
clearInterval(cInterval);
cInterval = setInterval(function(){
$.getJSON(
"<?php echo osc_base_url(true); ?>?page=ajax&action=check_username_availability",
{"s_username": $("#s_username").attr("value")},
function(data){
clearInterval(cInterval);
if(data.exists==0) {
$("#available").text('<?php echo osc_esc_js(__("The username is available", "market")); ?>');
} else {
$("#available").text('<?php echo osc_esc_js(__("The username is NOT available", "market")); ?>');
}
}
);
}, 1000);
}
});
});
</script>
<div class="form-container form-horizontal">
<div class="resp-wrapper">
<ul id="error_list"></ul>
<form action="<?php echo osc_base_url(true); ?>" method="post" id="change-username">
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="change_username_post" />
<div class="control-group">
<label class="control-label" for="s_username"><?php _e('Username', 'market'); ?></label>
<div class="controls">
<input type="text" name="s_username" id="s_username" value="" />
<div id="available"></div>
</div>
</div>
<div class="control-group">
<div class="controls">
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php _e("Update", 'market');?></button>
</div>
</div>
</form>
</div>
</div>
<?php osc_current_web_theme_path('footer.php') ; ?>