% if ( $countyflag ) {
<% include('/elements/xmlhttp.html',
'url' => $p.'misc/counties.cgi',
'subs' => [ $opt{'prefix'}. 'get_counties' ],
)
%>
% } else {
% }
<%init>
my %opt = @_;
foreach my $opt (qw( county state country prefix onchange disabled )) {
$opt{$_} = '' unless exists($opt{$_}) && defined($opt{$_});
}
my @counties = ();
if ( $countyflag ) {
@counties = counties( $opt{'state'}, $opt{'country'} );
# this is very hacky
unless ( scalar(@counties) > 1 ) {
if ( $opt{'disabled'} =~ /STYLE=/i ) {
$opt{'disabled'} =~ s/STYLE="([^"]+)"/STYLE="$1; display:none"/i;
} else {
$opt{'disabled'} .= ' STYLE="display:none"';
}
}
}
%init>
<%once>
my $sql = "SELECT COUNT(*) FROM cust_main_county".
" WHERE county IS NOT NULL AND county != ''";
my $sth = dbh->prepare($sql) or die dbh->errstr;
$sth->execute or die $sth->errstr;
my $countyflag = $sth->fetchrow_arrayref->[0];
%once>