X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fpref%2Fpref.html;h=562ef29809bcbb53b5c952db88072dd029abec27;hb=e1b1693a656964c6db0b8a3fb85494014434dcb1;hp=de5bd827074c67fe8f44d40a4f4ff039a15eee45;hpb=16527189e68b0636f4b39849f45063422ac47ba5;p=freeside.git diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index de5bd8270..562ef2980 100644 --- a/httemplate/pref/pref.html +++ b/httemplate/pref/pref.html @@ -31,7 +31,7 @@ Interface <% ntable("#cccccc",2) %> - Menu location: + Menu location: > Left
> Top
@@ -39,6 +39,21 @@ Interface + + Default customer view: + + + + +
@@ -57,22 +72,42 @@ Email Address
+Development +<% ntable("#cccccc",2) %> + + + Show internal package numbers: + option('show_pkgnum') ? 'CHECKED' : '' %>> + + + Show database profiling (when available): + option('show_db_profile') ? 'CHECKED' : '' %>> + + + Save database profiling logs (when available): + option('save_db_profile') ? 'CHECKED' : '' %>> + + + +
+ + Vonage integration (see Click2Call) <% ntable("#cccccc",2) %> Vonage phone number - + Vonage username - + Vonage password - + @@ -91,11 +126,26 @@ Vonage integration (see Click2Call <% include('/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', + 'Packages' => 'packages', + 'Payment History' => 'payment_history', +; +$customer_views{'Change History'} = 'change_history' + if $curuser->access_right('View customer history'); +$customer_views{'Jumbo'} = 'jumbo'; + # XSS via your own preferences? seems unlikely, but nice try anyway... -( $FS::CurrentUser::CurrentUser->option('menu_position') || 'left' ) +( $curuser->option('menu_position') || 'top' ) =~ /^(\w+)$/ or die "illegal menu_position"; my $menu_position = $1; -( $FS::CurrentUser::CurrentUser->option('email_address') ) +( $curuser->option('email_address') ) =~ /^([,\w\@.]*)$/ or die "illegal email_address"; #too late my $email_address = $1;