X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fbrowse%2Fpayment_gateway.html;h=a06e5cf7cc456dae9481c181079a30e02162db0b;hp=bb7f315144eb682724dd07e884085dfe04cc58db;hb=75e11f1d1a5ced24496b5732e290f7762403feb8;hpb=feef0e4c2b4bd6b776b25f5a1bd6fdbf63fd08b2 diff --git a/httemplate/browse/payment_gateway.html b/httemplate/browse/payment_gateway.html index bb7f31514..a06e5cf7c 100644 --- a/httemplate/browse/payment_gateway.html +++ b/httemplate/browse/payment_gateway.html @@ -1,70 +1,98 @@ -<% +<% include( 'elements/browse.html', + 'title' => 'Payment gateways', + 'menubar' => [ 'Agents' => $p.'browse/agent.cgi', ], + 'html_init' => $html_init, + 'name' => 'payment gateways', + 'disableable' => 1, + 'disabled_statuspos' => 1, + 'query' => { 'table' => 'payment_gateway', + 'hashref' => {}, + }, + 'count_query' => $count_query, + 'header' => [ '#', + 'Type', + 'Gateway', + 'Username', + 'Password', + 'Action', + 'URL', + 'Options', + ], + 'fields' => [ 'gatewaynum', + 'namespace_description', + $gateway_sub, + 'gateway_username', + sub { ' - '; }, + 'gateway_action', + 'gateway_callback_url', + $options_sub, + ], + ) +%> + + + +<% include('/elements/footer.html') %> +<%once> + +my $html_init = qq! + Add a new payment gateway +

+ + - my %search; - if ( $cgi->param('showdisabled') ) { - %search = (); - } else { - %search = ( 'disabled' => '' ); +!; + +my $gateway_sub = sub { + my($payment_gateway) = @_; + + my $gatewaynum = $payment_gateway->gatewaynum; + + my $html = $payment_gateway->gateway_module. ' '. qq! + + (edit) + !; + + unless ( $payment_gateway->disabled ) { + $html .= qq! + (disable) + !; } -%> -<%= header('Payment gateways', menubar( - 'Main Menu' => $p, - 'Agents' => $p. 'browse/agent.cgi', -)) %> - -Add a new payment gateway

- -<%= $cgi->param('showdisabled') - ? do { $cgi->param('showdisabled', 0); - '( hide disabled gateways )'; } - : do { $cgi->param('showdisabled', 1); - '( show disabled gateways )'; } -%> + $html .= '
'; -<%= table() %> - - param('showdisabled') ? 1 : 2 %>># - Gateway - Username - Password - Action - Options - - -<% foreach my $payment_gateway ( qsearch( 'payment_gateway', \%search ) ) { %> - - - <%= $payment_gateway->gatewaynum %> - <% if ( !$cgi->param('showdisabled') ) { %> - <%= $payment_gateway->disabled ? 'DISABLED' : '' %> - <% } %> - <%= $payment_gateway->gateway_module %> - <%= !$payment_gateway->disabled - ? ' (disable)' - : '' - %> - - <%= $payment_gateway->gateway_username %> - - - <%= $payment_gateway->gateway_action %> - - - <% my %options = $payment_gateway->options; - foreach my $option ( keys %options ) { - %> - - - - - <% } %> -
<%= $option %>:<%= $options{$option} %>
- - - -<% } %> + $html; - - - +}; + +my $options_sub = sub { + my($payment_gateway) = @_; + + #should return a structure instead of this manual formatting... + + my $html = ''; + + my %options = $payment_gateway->options; + foreach my $option ( keys %options ) { + $html .= ''. + ''; + } + $html .= '
'. $option. ':'. $options{$option}. '
'; + + $html; +}; + +my $count_query = 'SELECT COUNT(*) FROM payment_gateway'; + + +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); +