|
<%
my $out;
my @tabs = (
{ text => $LANG{Zurueck_zur_Suche},
href => "$ENV{DOCUMENT_NAME}?$PAGE{id}"
},
{ text => $LANG{Vermieter_merken},
href => "cgi-bin/siteengine.pl?page=community&function=add2basket&type=vermieter&value=$in{gid}&realname=$VERMIETER{betriebsname}"
}
);
my @tabs = (
{ text => $LANG{Zurueck_zur_Suche},
href => "$ENV{DOCUMENT_NAME}?$PAGE{id}"
}
);
$in{do} = "info" unless $in{do};
foreach my $tab (@tabs) {
my $class = $in{do} eq $tab->{id} ? "botbarON" : "botbarOFF" ;
$out .= qq($tab->{text} | );
}
$out;
%>