RT# 78617 - fixed preference field customer_view_emails to only except whole numbers...
[freeside.git] / httemplate / pref / pref.html
index 2595239..c50f5ca 100644 (file)
-<% include('/elements/header.html', 'Preferences for '. getotaker ) %>
+<& /elements/header.html, mt('Preferences for [_1]', $FS::CurrentUser::CurrentUser->username) &>
 
-<FORM METHOD="POST" ACTION="pref-process.html">
+% my $js_form_validate = { 'pref_form' => { 'name' => 'pref_form' } };
 
-<% include('/elements/error.html') %>
+<FORM METHOD="POST" NAME="pref_form" ACTION="pref-process.html">
 
+<& /elements/error.html &>
+
+<& /elements/alert.html &>
+
+% if ( FS::Auth->auth_class->can('change_password') ) {
+
+    <FONT CLASS="fsinnerbox-title"><% emt('Change password (leave blank for no change)') %></FONT>
+    <TABLE CLASS="fsinnerbox">
+
+      <TR>
+        <TH ALIGN="right"><% emt("Current password:") %> </TH>
+        <TD><INPUT TYPE="password" NAME="_password"></TD>
+      </TR>
+
+      <TR>
+        <TH ALIGN="right"><% emt("New password:") %> </TH>
+        <TD><INPUT TYPE="password" NAME="new_password"></TD>
+      </TR>
+
+      <TR>
+       <TH ALIGN="right"><% emt("Re-enter new password:") %> </TH>
+       <TD><INPUT TYPE="password" NAME="new_password2"></TD>
+      </TR>
+
+    </TABLE>
+    <BR>
+
+% }
+
+<FONT CLASS="fsinnerbox-title"><% emt("Interface") %></FONT>
+<TABLE CLASS="fsinnerbox">
+
+  <TR>
+    <TH ALIGN="right"><% emt("Locale:") %> </TH>
+    <TD COLSPAN=2>
+      <SELECT NAME="locale">
+%       foreach my $locale ( @locales ) {
+%         my %info = FS::Locales->locale_info($locale);
+%         my $selected = ($locale eq $curuser->option('locale'))
+%                          ? 'SELECTED' : '';
+          <OPTION VALUE="<% $locale %>" <%$selected%>><% $info{name} %> (<% $info{country} %>)
+%       }
+      </SELECT>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right" STYLE="vertical-align:top"><% emt("Menu location:") %> </TH>
+    <TD>
+      <INPUT TYPE="radio" NAME="menu_position" VALUE="left" onClick="document.images['menu_example'].src='../images/menu-left-example.png';" <% $menu_position eq 'left' ? ' CHECKED' : ''%>> <% emt("Left") %><BR>
+      <INPUT TYPE="radio" NAME="menu_position" VALUE="top" onClick="document.images['menu_example'].src='../images/menu-top-example.png';" <% $menu_position eq 'top' ? ' CHECKED' : ''%>> <% emt("Top") %> <BR>
+    </TD>
+    <TD><IMG NAME="menu_example" SRC="../images/menu-<% $menu_position %>-example.png"></TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("Enable mobile-friendly menu:") %> </TH>
+    <TD COLSPAN=2>
+      <INPUT TYPE="checkbox" NAME="mobile_menu" VALUE="Y"
+<% $curuser->option('mobile_menu') ? 'CHECKED' : '' %>>
+    </TD>
+  </TR>
+  <TR>
+    <TH ALIGN="right"><% emt("Default customer view:") %> </TH>
+    <TD COLSPAN=2>
+      <SELECT NAME="default_customer_view">
+%       foreach my $view ( keys %customer_views ) {
+%         my $selected =
+%           $customer_views{$view} eq $curuser->option('default_customer_view')
+%             ? 'SELECTED'
+%             : '';
+          <OPTION VALUE="<%$customer_views{$view}%>" <%$selected%>><% emt($view) %></OPTION>
+%       }
+      </SELECT>
+    </TD>
+  </TR>
+
+% my $history_order = $curuser->option('history_order') || 'oldest';
+  <TR>
+    <TH ALIGN="right"><% emt("Customer history sort order:") %> </TH>
+    <TD COLSPAN=2>
+      <& /elements/select.html,
+        field       => 'history_order',
+        curr_value  => $history_order,
+        options     => [ 'oldest', 'newest' ],
+        labels      => { 'oldest' => mt('Oldest first'),
+                         'newest' => mt('Newest first'),
+                       },
+      &>
+    </TD>
+  </TR>
+  
+  <TR>
+    <TH ALIGN="right"><% emt("Spreadsheet download format:") %> </TH>
+    <TD COLSPAN=2>
+      <SELECT NAME="spreadsheet_format">
+%       my $xls =  $curuser->option('spreadsheet_format') eq 'XLS';
+%       my $xlsx = $curuser->option('spreadsheet_format') eq 'XLSX';
+        <OPTION VALUE=""></OPTION>
+        <OPTION VALUE="XLS"<%  $xls ? 'SELECTED' : '' %>>XLS (Excel 97/2000/XP)
+        </OPTION>
+        <OPTION VALUE="XLSX"<% $xlsx ? 'SELECTED' : ''%>>XLSX (Excel 2007+)
+        </OPTION>
+      </SELECT>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right" COLSPAN=1><% emt("Disable HTML editor for customer notes:") %> </TH>
+    <TD ALIGN="left" COLSPAN=2>
+      <INPUT TYPE="checkbox" NAME="disable_html_editor" VALUE="1" <% $curuser->option('disable_html_editor') ? 'CHECKED' : '' %>>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right" COLSPAN=1><% emt("Disable submission on Enter key - one-time charges:") %> </TH>
+    <TD ALIGN="left" COLSPAN=2>
+      <INPUT TYPE="checkbox" NAME="disable_enter_submit_onetimecharge" VALUE="1" <% $curuser->option('disable_enter_submit_onetimecharge') ? 'CHECKED' : '' %>>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("Don't copy MAC address delimiters to clipboard") %></TH>
+    <TD ALIGN="left" COLSPAN=2>
+      <INPUT TYPE="checkbox" NAME="enable_mask_clipboard_hack" VALUE="1" <% $curuser->option('enable_mask_clipboard_hack') ? 'CHECKED' : '' %>>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("When printing, scale HTML documents to fit on a letter-size page") %></TH>
+    <TD ALIGN="left">
+      <INPUT TYPE="checkbox" NAME="printtofit" VALUE="Y" <% $curuser->option('printtofit') ? 'CHECKED' : '' %>>
+    </TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("How many recently-modified customers displayed on dashboard") %></TH>
+    <TD ALIGN="left" COLSPAN=2>
+      <INPUT TYPE="text" NAME="dashboard_customers" VALUE="<% $curuser->option('dashboard_customers') %>"></TD>
+    </TD>
+  </TR>
+
+% my $validate_field_cve = 'customer_view_emails';
+% $js_form_validate->{pref_form}->{validate_fields}{$validate_field_cve} = 'digits: true';
+% $js_form_validate->{pref_form}->{error_message}{$validate_field_cve} = 'Please only enter numbers here.';
+
+  <TR>
+    <TH ALIGN="right"><% emt("How many recent outbound emails to show in customer view") %></TH>
+    <TD ALIGN="left" COLSPAN=2>
+      <INPUT TYPE="text" ID="<% $validate_field_cve %>" NAME="<% $validate_field_cve %>" VALUE="<% $curuser->option('customer_view_emails') %>"></TD>
+    </TD>
+  </TR>
+
+</TABLE>
+<BR>
+
+
+<FONT CLASS="fsinnerbox-title"><% emt("Email Address") %></FONT>
+<TABLE CLASS="fsinnerbox">
+
+  <TR>
+    <TH><% emt("Email Address(es) (comma separated) ") %></TH>
+    <TD>
+   <TD><INPUT TYPE="text" NAME="email_address" VALUE="<% $email_address %>">
+    </TD>
+  </TR>
+
+</TABLE>
+<BR>
+
+
+<FONT CLASS="fsinnerbox-title"><% emt("Development") %></FONT>
+<TABLE CLASS="fsinnerbox">
+
+  <TR>
+    <TH><% emt("Show customer package timestamps:") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="cust_pkg-display_times" VALUE="1" <% $curuser->option('cust_pkg-display_times') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Show internal package numbers:") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="show_pkgnum" VALUE="1" <% $curuser->option('show_pkgnum') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Show config item counts:") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="show_confitem_counts" VALUE="1" <% $curuser->option('show_confitem_counts') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Show export data on service view (when available):") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="export_getsettings" VALUE="1" <% $curuser->option('export_getsettings') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Show database profiling (when available):") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="show_db_profile" VALUE="1" <% $curuser->option('show_db_profile') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Save database profiling logs (when available):") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="save_db_profile" VALUE="1" <% $curuser->option('save_db_profile') ? 'CHECKED' : '' %>></TD>
+  </TR>
+  <TR>
+    <TH><% emt("Save temporary invoice typesetting files:") %> </TH>
+    <TD><INPUT TYPE="checkbox" NAME="save_tmp_typesetting" VALUE="1" <% $curuser->option('save_tmp_typesetting') ? 'CHECKED' : '' %>></TD>
+  </TR>
+
+</TABLE>
+<BR>
+
+% if ( $curuser->access_right('Employee preference telephony integration') ) {
+
+<% emt("SNOM integration") %>
+<% ntable("#cccccc",2) %>
+
+  <TR>
+    <TH ALIGN="right"><% emt("SNOM IP address") %></TH>
+    <TD><INPUT TYPE="text" NAME="snom-ip" VALUE="<% $curuser->option('snom-ip') %>"></TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("SNOM HTTP username (if necessary)") %></TH>
+    <TD><INPUT TYPE="text" NAME="snom-username" VALUE="<% $curuser->option('snom-username') %>"></TD>
+  </TR>
+
+  <TR>
+    <TH ALIGN="right"><% emt("SNOM HTTP password (if necessary)") %></TH>
+    <TD><INPUT TYPE="password" NAME="snom-password" VALUE="<% $curuser->option('snom-password') %>"></TD>
+  </TR>
+
+</TABLE>
+<BR>
+
+<% emt("OR")%><BR><BR>
+
+<% emt("Vonage integration (see") %> <a href="https://secure.click2callu.com/"><% emt("Click2Call") %></a>)
 <% ntable("#cccccc",2) %>
 
-<TR>
-  <TD ALIGN="right">Current password: </TD>
-  <TD><INPUT TYPE="password" NAME="_password"></TD>
-</TR>
+  <TR>
+    <TH ALIGN="right"><% emt("Vonage phone number") %></TH>
+    <TD><INPUT TYPE="text" NAME="vonage-fromnumber" VALUE="<% $curuser->option('vonage-fromnumber') %>"></TD>
+  </TR>
 
-<TR>
-  <TD ALIGN="right">New password: </TD>
-  <TD><INPUT TYPE="password" NAME="new_password"></TD>
-</TR>
+  <TR>
+    <TH ALIGN="right"><% emt("Vonage username") %></TH>
+    <TD><INPUT TYPE="text" NAME="vonage-username" VALUE="<% $curuser->option('vonage-username') %>"></TD>
+  </TR>
 
-<TR>
-  <TD ALIGN="right">Re-enter new password: </TD>
-  <TD><INPUT TYPE="password" NAME="new_password2"></TD>
-</TR>
+  <TR>
+    <TH ALIGN="right"><% emt("Vonage password") %></TH>
+    <TD><INPUT TYPE="password" NAME="vonage-password" VALUE="<% $curuser->option('vonage-password') %>"></TD>
+  </TR>
 
 </TABLE>
+<BR>
+
+% }
+
+% foreach my $prop (qw( height width availHeight availWidth colorDepth )) {
+  <INPUT TYPE="hidden" NAME="<% $prop %>" VALUE="">
+  <SCRIPT TYPE="text/javascript">
+  document.pref_form.<% $prop %>.value = screen.<% $prop %>;
+  </script>
+% }
+
+<INPUT TYPE="submit" VALUE="<% emt("Update preferences") %>">
+
+% my %footerdata = (
+%   'formvalidation' => $js_form_validate,
+% );
+<% include("/elements/footer.html", %footerdata) %>
+
+%#<&/elements/footer.html &>
+
+<%init>
+
+my $curuser = $FS::CurrentUser::CurrentUser;
+
+#false laziness w/view/cust_main.cgi and Conf.pm (cust_main-default_view)
+
+tie my %customer_views, 'Tie::IxHash',
+  'Basics'          => 'basics',
+  'Notes'           => 'notes', #notes and files?
+  'Tickets'         => 'tickets',
+  'Appointments'    => 'appointments',
+  'Quotations'      => 'quotations',
+  'Packages'        => 'packages',
+  'Payment History' => 'payment_history',
+;
+$customer_views{'Change History'} = 'change_history'
+  if $curuser->access_right('View customer history');
+
+# XSS via your own preferences?  seems unlikely, but nice try anyway...
+( $curuser->option('menu_position') || 'top' )
+  =~ /^(\w+)$/ or die "illegal menu_position";
+my $menu_position = $1;
+( $curuser->option('email_address') )
+  =~ /^([,\w\@.\-]*)$/ or die "illegal email_address";  #too late
+my $email_address = $1;
+
+my $conf = new FS::Conf;
+
+my @locales = $conf->config('available-locales');
+
+if ( ! @locales ) {
+
+       @locales = FS::Locales->locales ;
 
-<INPUT TYPE="submit" VALUE="Change password">
+}
 
-<% include('/elements/footer.html') %>
+</%init>