-
Notifications
You must be signed in to change notification settings - Fork 3
/
user-profile.php
126 lines (123 loc) · 5.66 KB
/
user-profile.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
/*
* Osclass – software for creating and publishing online classified
* advertising platforms
*
* Copyright (C) 2014 OSCLASS
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// meta tag robots
osc_add_hook('header','bender_nofollow_construct');
bender_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 __('Update account', 'bender');
}
osc_current_web_theme_path('header.php') ;
$osc_user = osc_user();
?>
<h1><?php _e('Update account', 'bender'); ?></h1>
<?php UserForm::location_javascript(); ?>
<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">
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="profile_post" />
<div class="control-group">
<label class="control-label" for="name"><?php _e('Name', 'bender'); ?></label>
<div class="controls">
<?php UserForm::name_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="user_type"><?php _e('User type', 'bender'); ?></label>
<div class="controls">
<?php UserForm::is_company_select(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="phoneMobile"><?php _e('Cell phone', 'bender'); ?></label>
<div class="controls">
<?php UserForm::mobile_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="phoneLand"><?php _e('Phone', 'bender'); ?></label>
<div class="controls">
<?php UserForm::phone_land_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="country"><?php _e('Country', 'bender'); ?></label>
<div class="controls">
<?php UserForm::country_select(osc_get_countries(), osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="region"><?php _e('Region', 'bender'); ?></label>
<div class="controls">
<?php UserForm::region_select(osc_get_regions(), osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="city"><?php _e('City', 'bender'); ?></label>
<div class="controls">
<?php UserForm::city_select(osc_get_cities(), osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="city_area"><?php _e('City area', 'bender'); ?></label>
<div class="controls">
<?php UserForm::city_area_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label"l for="address"><?php _e('Address', 'bender'); ?></label>
<div class="controls">
<?php UserForm::address_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="webSite"><?php _e('Website', 'bender'); ?></label>
<div class="controls">
<?php UserForm::website_text(osc_user()); ?>
</div>
</div>
<div class="control-group">
<label class="control-label" for="s_info"><?php _e('Description', 'bender'); ?></label>
<div class="controls">
<?php UserForm::info_textarea('s_info', osc_locale_code(), @$osc_user['locale'][osc_locale_code()]['s_info']); ?>
</div>
</div>
<?php osc_run_hook('user_profile_form', osc_user()); ?>
<div class="control-group">
<div class="controls">
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php _e("Update", 'bender');?></button>
</div>
</div>
<div class="control-group">
<div class="controls">
<?php osc_run_hook('user_form', osc_user()); ?>
</div>
</div>
</form>
</div>
</div>
<?php osc_current_web_theme_path('footer.php') ; ?>