X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fpref%2Fpref.html;h=8bdf6c09c2a4256da265b1731a82a7edea0553d0;hb=3a02c437eadd9a39f7e56056ca987a4846650209;hp=de5bd827074c67fe8f44d40a4f4ff039a15eee45;hpb=c648976f0b7975f2328ebd7ba8c711fad0ca4195;p=freeside.git diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index de5bd8270..8bdf6c09c 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 - + @@ -89,13 +124,30 @@ Vonage integration (see Click2Call <% include('/elements/footer.html') %> +<%once> + + #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', + #'Change History' => '', + 'Jumbo' => 'jumbo', + ; + + <%init> +my $curuser = $FS::CurrentUser::CurrentUser; + # 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;