From 0930d22ffc440f80c1b222b2e750cadbabd9e8f6 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 13 Jan 2008 21:35:54 +0000 Subject: ACLs --- httemplate/edit/process/payment_gateway.html | 59 ++++++++++++++-------------- 1 file changed, 30 insertions(+), 29 deletions(-) (limited to 'httemplate/edit/process/payment_gateway.html') diff --git a/httemplate/edit/process/payment_gateway.html b/httemplate/edit/process/payment_gateway.html index 0b7e31395..b16bc3d27 100644 --- a/httemplate/edit/process/payment_gateway.html +++ b/httemplate/edit/process/payment_gateway.html @@ -1,34 +1,35 @@ -% -% -%my $gatewaynum = $cgi->param('gatewaynum'); -% -%my $old = qsearchs('payment_gateway',{'gatewaynum'=>$gatewaynum}) if $gatewaynum; -% -%my $new = new FS::payment_gateway ( { -% map { -% $_, scalar($cgi->param($_)); -% } fields('payment_gateway') -%} ); -% -%my @options = split(/\r?\n/, $cgi->param('gateway_options') ); -%pop @options -% if scalar(@options) % 2 && $options[-1] =~ /^\s*$/; -%my %options = @options; -% -%my $error; -%if ( $gatewaynum ) { -% $error=$new->replace($old, \%options); -%} else { -% $error=$new->insert(\%options); -% $gatewaynum=$new->getfield('gatewaynum'); -%} -% %if ( $error ) { % $cgi->param('error', $error); -% print $cgi->redirect(popurl(2). "payment_gateway.html?". $cgi->query_string ); +<% $cgi->redirect(popurl(2). "payment_gateway.html?". $cgi->query_string ) %> %} else { -% print $cgi->redirect(popurl(3). "browse/payment_gateway.html"); +<% $cgi->redirect(popurl(3). "browse/payment_gateway.html") %> %} -% -% +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my $gatewaynum = $cgi->param('gatewaynum'); + +my $old = qsearchs('payment_gateway',{'gatewaynum'=>$gatewaynum}) if $gatewaynum; + +my $new = new FS::payment_gateway ( { + map { + $_, scalar($cgi->param($_)); + } fields('payment_gateway') +} ); + +my @options = split(/\r?\n/, $cgi->param('gateway_options') ); +pop @options + if scalar(@options) % 2 && $options[-1] =~ /^\s*$/; +my %options = @options; + +my $error; +if ( $gatewaynum ) { + $error=$new->replace($old, \%options); +} else { + $error=$new->insert(\%options); + $gatewaynum=$new->getfield('gatewaynum'); +} + -- cgit v1.2.1