1 <% include('/elements/header.html', 'Preferences for '. $FS::CurrentUser::CurrentUser->username ) %>
3 <FORM METHOD="POST" NAME="pref_form" ACTION="pref-process.html">
5 <% include('/elements/error.html') %>
7 % if ( FS::Auth->auth_class->can('change_password') ) {
9 <% mt('Change password (leave blank for no change)') |h %>
10 <% ntable("#cccccc",2) %>
13 <TH ALIGN="right">Current password: </TH>
14 <TD><INPUT TYPE="password" NAME="_password"></TD>
18 <TH ALIGN="right">New password: </TH>
19 <TD><INPUT TYPE="password" NAME="new_password"></TD>
23 <TH ALIGN="right">Re-enter new password: </TH>
24 <TD><INPUT TYPE="password" NAME="new_password2"></TD>
33 <% ntable("#cccccc",2) %>
36 <TH ALIGN="right">Locale: </TH>
38 <SELECT NAME="locale">
39 % foreach my $locale ( FS::Locales->locales ) {
40 % my %info = FS::Locales->locale_info($locale);
41 % my $selected = ($locale eq $curuser->option('locale'))
43 <OPTION VALUE="<% $locale %>" <%$selected%>><% $info{name} %> (<% $info{country} %>)
50 <TH ALIGN="right">Menu location: </TH>
52 <INPUT TYPE="radio" NAME="menu_position" VALUE="left" onClick="document.images['menu_example'].src='../images/menu-left-example.png';" <% $menu_position eq 'left' ? ' CHECKED' : ''%>> Left<BR>
53 <INPUT TYPE="radio" NAME="menu_position" VALUE="top"onClick="document.images['menu_example'].src='../images/menu-top-example.png';" <% $menu_position eq 'top' ? ' CHECKED' : ''%>> Top <BR>
55 <TD><IMG NAME="menu_example" SRC="../images/menu-<% $menu_position %>-example.png"></TD>
59 <TH ALIGN="right">Enable mobile-friendly menu: </TH>
61 <INPUT TYPE="checkbox" NAME="mobile_menu" VALUE="Y"
62 <% $curuser->option('mobile_menu') ? 'CHECKED' : '' %>>
67 <TH ALIGN="right">Default customer view: </TH>
69 <SELECT NAME="default_customer_view">
70 % foreach my $view ( keys %customer_views ) {
72 % $customer_views{$view} eq $curuser->option('default_customer_view')
75 <OPTION VALUE="<%$customer_views{$view}%>" <%$selected%>><%$view%></OPTION>
81 % my $history_order = $curuser->option('history_order') || 'oldest';
83 <TH ALIGN="right">Customer history sort order: </TH>
85 <& /elements/select.html,
86 field => 'history_order',
87 curr_value => $history_order,
88 options => [ 'oldest', 'newest' ],
89 labels => { 'oldest' => 'Oldest first',
90 'newest' => 'Newest first',
97 <TH ALIGN="right">Spreadsheet download format: </TH>
99 <SELECT NAME="spreadsheet_format">
100 % my $xls = $curuser->option('spreadsheet_format') eq 'XLS';
101 % my $xlsx = $curuser->option('spreadsheet_format') eq 'XLSX';
102 <OPTION VALUE=""></OPTION>
103 <OPTION VALUE="XLS"<% $xls ? 'SELECTED' : '' %>>XLS (Excel 97/2000/XP)
105 <OPTION VALUE="XLSX"<% $xlsx ? 'SELECTED' : ''%>>XLSX (Excel 2007+)
111 % if ( FS::Conf->new->exists('enable_fuzzy_on_exact') ) {
113 <INPUT TYPE="hidden" NAME="enable_fuzzy_on_exact" VALUE="<% $curuser->option('enable_fuzzy_on_exact') ? 1 : 0 %>">
118 <TH ALIGN="right" COLSPAN=1>Enable approximate customer searching <BR>even when an exact match is found: </TH>
119 <TD ALIGN="left" COLSPAN=2>
120 <INPUT TYPE="checkbox" NAME="enable_fuzzy_on_exact" VALUE="1" <% $curuser->option('enable_fuzzy_on_exact') ? 'CHECKED' : '' %>>
127 <TH ALIGN="right" COLSPAN=1>Disable HTML editor for customer notes: </TH>
128 <TD ALIGN="left" COLSPAN=2>
129 <INPUT TYPE="checkbox" NAME="disable_html_editor" VALUE="1" <% $curuser->option('disable_html_editor') ? 'CHECKED' : '' %>>
134 <TH ALIGN="right" COLSPAN=1>Disable submission on [Enter] key - one-time charges: </TH>
135 <TD ALIGN="left" COLSPAN=2>
136 <INPUT TYPE="checkbox" NAME="disable_enter_submit_onetimecharge" VALUE="1" <% $curuser->option('disable_enter_submit_onetimecharge') ? 'CHECKED' : '' %>>
141 <TH ALIGN="right">Don't copy MAC address delimiters to clipboard</TH>
142 <TD ALIGN="left" COLSPAN=2>
143 <INPUT TYPE="checkbox" NAME="enable_mask_clipboard_hack" VALUE="1" <% $curuser->option('enable_mask_clipboard_hack') ? 'CHECKED' : '' %>>
148 <TH ALIGN="right">How many recently-modified customers displayed on dashboard</TH>
149 <TD ALIGN="left" COLSPAN=2>
150 <INPUT TYPE="text" NAME="dashboard_customers" VALUE="<% $curuser->option('dashboard_customers') %>"></TD>
155 <TH ALIGN="right">How many recent outbound emails to show in customer view</TH>
156 <TD ALIGN="left" COLSPAN=2>
157 <INPUT TYPE="text" NAME="customer_view_emails" VALUE="<% $curuser->option('customer_view_emails') %>"></TD>
168 <% ntable("#cccccc",2) %>
171 <TH>Email Address(es) (comma separated) </TH>
173 <TD><INPUT TYPE="text" NAME="email_address" VALUE="<% $email_address %>">
182 <% ntable("#cccccc",2) %>
185 <TH>Show customer package timestamps: </TH>
186 <TD><INPUT TYPE="checkbox" NAME="cust_pkg-display_times" VALUE="1" <% $curuser->option('cust_pkg-display_times') ? 'CHECKED' : '' %>></TD>
189 <TH>Show internal package numbers: </TH>
190 <TD><INPUT TYPE="checkbox" NAME="show_pkgnum" VALUE="1" <% $curuser->option('show_pkgnum') ? 'CHECKED' : '' %>></TD>
193 <TH>Show config item counts: </TH>
194 <TD><INPUT TYPE="checkbox" NAME="show_confitem_counts" VALUE="1" <% $curuser->option('show_confitem_counts') ? 'CHECKED' : '' %>></TD>
197 <TH>Show export data on service view (when available): </TH>
198 <TD><INPUT TYPE="checkbox" NAME="export_getsettings" VALUE="1" <% $curuser->option('export_getsettings') ? 'CHECKED' : '' %>></TD>
201 <TH>Show database profiling (when available): </TH>
202 <TD><INPUT TYPE="checkbox" NAME="show_db_profile" VALUE="1" <% $curuser->option('show_db_profile') ? 'CHECKED' : '' %>></TD>
205 <TH>Save database profiling logs (when available): </TH>
206 <TD><INPUT TYPE="checkbox" NAME="save_db_profile" VALUE="1" <% $curuser->option('save_db_profile') ? 'CHECKED' : '' %>></TD>
209 <TH>Save temporary invoice typesetting files: </TH>
210 <TD><INPUT TYPE="checkbox" NAME="save_tmp_typesetting" VALUE="1" <% $curuser->option('save_tmp_typesetting') ? 'CHECKED' : '' %>></TD>
216 % if ( $curuser->access_right('Employee preference telephony integration') ) {
219 <% ntable("#cccccc",2) %>
222 <TH ALIGN="right">SNOM IP address</TH>
223 <TD><INPUT TYPE="text" NAME="snom-ip" VALUE="<% $curuser->option('snom-ip') %>"></TD>
227 <TH ALIGN="right">SNOM HTTP username (if necessary)</TH>
228 <TD><INPUT TYPE="text" NAME="snom-username" VALUE="<% $curuser->option('snom-username') %>"></TD>
232 <TH ALIGN="right">SNOM HTTP password (if necessary)</TH>
233 <TD><INPUT TYPE="password" NAME="snom-password" VALUE="<% $curuser->option('snom-password') %>"></TD>
241 Vonage integration (see <a href="https://secure.click2callu.com/">Click2Call</a>)
242 <% ntable("#cccccc",2) %>
245 <TH ALIGN="right">Vonage phone number</TH>
246 <TD><INPUT TYPE="text" NAME="vonage-fromnumber" VALUE="<% $curuser->option('vonage-fromnumber') %>"></TD>
250 <TH ALIGN="right">Vonage username</TH>
251 <TD><INPUT TYPE="text" NAME="vonage-username" VALUE="<% $curuser->option('vonage-username') %>"></TD>
255 <TH ALIGN="right">Vonage password</TH>
256 <TD><INPUT TYPE="password" NAME="vonage-password" VALUE="<% $curuser->option('vonage-password') %>"></TD>
264 % foreach my $prop (qw( height width availHeight availWidth colorDepth )) {
265 <INPUT TYPE="hidden" NAME="<% $prop %>" VALUE="">
266 <SCRIPT TYPE="text/javascript">
267 document.pref_form.<% $prop %>.value = screen.<% $prop %>;
271 <INPUT TYPE="submit" VALUE="Update preferences">
273 <% include('/elements/footer.html') %>
276 my $curuser = $FS::CurrentUser::CurrentUser;
278 #false laziness w/view/cust_main.cgi and Conf.pm (cust_main-default_view)
280 tie my %customer_views, 'Tie::IxHash',
281 'Basics' => 'basics',
282 'Notes' => 'notes', #notes and files?
283 'Tickets' => 'tickets',
284 'Packages' => 'packages',
285 'Payment History' => 'payment_history',
287 $customer_views{'Change History'} = 'change_history'
288 if $curuser->access_right('View customer history');
289 $customer_views{'Jumbo'} = 'jumbo';
291 # XSS via your own preferences? seems unlikely, but nice try anyway...
292 ( $curuser->option('menu_position') || 'top' )
293 =~ /^(\w+)$/ or die "illegal menu_position";
294 my $menu_position = $1;
295 ( $curuser->option('email_address') )
296 =~ /^([,\w\@.\-]*)$/ or die "illegal email_address"; #too late
297 my $email_address = $1;