X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fconfig%2Fconfig.cgi;h=c2b3e6d3c4774c68c41e3f2427f3f022574ee117;hp=8d5b1ae430744407b56f0ba35c0c585fd2a92e87;hb=29347e1d34d5468994af6e219f00582e525688ae;hpb=6ff3e876504bab769ebf557cb5fd90ec52dfc3e7 diff --git a/httemplate/config/config.cgi b/httemplate/config/config.cgi index 8d5b1ae43..c2b3e6d3c 100644 --- a/httemplate/config/config.cgi +++ b/httemplate/config/config.cgi @@ -267,9 +267,24 @@ Setting <% $key %> (this.form)"> +% } elsif ( $element_types{$type} ) { +% +% my %opt = ( 'element_name' => "$key$n", +% 'empty_label' => ' ', +% ); +% if ( $config_item->multiple ) { +% $opt{'multiple'} = 1 if $config_item->multiple; +% $opt{'curr_value'} = [ $conf->config($key, $agentnum) ]; +% } else { +% $opt{'curr_value'} = +% $conf->exists($key, $agentnum) ? $conf->config($key, $agentnum) : ''; +% } + + <% include("/elements/$type.html", %opt ) %> + % } else { - unknown type <% $type %> + unknown type <% $type %> % } % $n++; @@ -292,6 +307,10 @@ my $conf = new FS::Conf; my @config_items = $conf->config_items; my %confitems = map { $_->key => $_ } @config_items; +my %element_types = map { $_ => 1 } qw( + select-part_svc select-part_pkg select-pkg_class +); + <%init>