<% include("/elements/header.html", $title, menubar( 'View all agents' => $p.'browse/agent.cgi', ) ) %> Click on a configuration value to change it.

% if ($FS::UID::use_confcompat) { CONFIGURATION NOT STORED IN DATABASE -- USING COMPATIBILITY MODE

%} % % foreach my $section ( qw(required billing username password UI session % shell BIND % ), % '', 'deprecated') { % foreach my $nav_section ( qw(required billing username password UI session % shell BIND % ), % '', 'deprecated') { % if ( $section eq $nav_section ) { [<% ucfirst($nav_section || 'unclassified') %>] % } else { [<% ucfirst($nav_section || 'unclassified') %>] % } % }
% foreach my $i (grep $_->section eq $section, @config_items) { % my @types = ref($i->type) ? @{$i->type} : ($i->type); % my( $width, $height ) = ( 522, 336 ); % if ( grep $_ eq 'textarea', @types ) { % #800x600 % $width = 763; % $height = 408; % #1024x768 % #$width = % #$height = % } % }
<% ucfirst($section || 'unclassified') %> configuration options
%# <% $i->key %> - <% $i->description %> <% $i->key %>: <% $i->description %> % foreach my $type (@types) { % my $n = 0; % if ( $type eq '' ) { % } elsif ( $type eq 'binary' ) { <% $conf->exists($i->key, $agentnum) ? qq!download! : 'empty' %> % } elsif ( $type eq 'textarea' % || $type eq 'editlist' % || $type eq 'selectmultiple' ) { % } elsif ( $type eq 'checkbox' ) { % } elsif ( $type eq 'text' || $type eq 'select' ) { % } elsif ( $type eq 'select-sub' ) { % } else { % } % $n++; }
no type
<% encode_entities(join("\n",
     map { length($_) > 88 ? substr($_,0,88).'...' : $_ }
         $conf->config($i->key, $agentnum)
   ) )
%>
YES' : 'ff0000">NO' %>
<% $conf->exists($i->key, $agentnum) ? $conf->config($i->key, $agentnum) : '' %>
<% $conf->config($i->key, $agentnum) %>: <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) %>
unknown type <% $type %>


% } <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); my $agentnum = ''; if ($cgi->param('agentnum') =~ /^(\d+)$/) { $agentnum = $1; } my $title; if ($agentnum) { my $agent = qsearchs('agent', { 'agentnum' => $agentnum } ); die "Agent $agentnum not found!" unless $agent; $title = "Configuration for ". $agent->agent; } else { $title = 'Global Configuration'; } my $conf = new FS::Conf; my @config_items = grep { $agentnum ? $_->per_agent : 1 } grep { $_->key != ~/^invoice_(html|latex|template)/ } $conf->config_items;