$LIMITFLUSH $NEWDAYVISITTIMEOUT $VISITTIMEOUT $NOTSORTEDRECORDTOLERANCE
$WIDTHCOLICON $TOOLTIPON
$lastyearbeforeupdate $lastmonthbeforeupdate $lastdaybeforeupdate $lasthourbeforeupdate $lastdatebeforeupdate
+ $NOHTML
/;
$DEBUGFORCED = 0
; # Force debug level to log lesser level into debug.log file (Keep this value to 0)
; # Lapse of time to accept a record if not in correct order. 20000 = 2 hour (Default = 20000)
$WIDTHCOLICON = 32;
$TOOLTIPON = 0; # Tooltips plugin loaded
+$NOHTML = 0; # Suppress the html headers
# ----- Running variables -----
use vars qw/
#------------------------------------------------------------------------------
sub html_head {
my $dir = $PageDir ? 'right' : 'left';
+ if ($NOHTML) { return; }
if ( scalar keys %HTMLOutput || $PluginMode )
{
my $periodtitle = " ($YearRequired";
my $tooltipnb = shift;
my $width = shift || 70;
my $class = shift;
+
+ # Call to plugins' function TabHeadHTML
+ my $extra_head_html='';
+ foreach my $pluginname (keys %{$PluginsLoaded{'TabHeadHTML'}}) {
+ my $function="TabHeadHTML_$pluginname";
+ $extra_head_html .=&$function($title);
+ }
+
if ( $width == 70 && $QueryString =~ /buildpdf/i ) {
print
"<table class=\"aws_border\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=\"800\">\n";
}
if ($tooltipnb) {
- print "<tr><td class=\"aws_title\" width=\"$width%\""
- . Tooltip( $tooltipnb, $tooltipnb )
- . ">$title </td>";
+ print "<tr><td class=\"aws_title\" width=\"$width%\"".Tooltip($tooltipnb,$tooltipnb).">$title ".$extra_head_html."</td>";
}
else {
- print "<tr><td class=\"aws_title\" width=\"$width%\">$title </td>";
+ print "<tr><td class=\"aws_title\" width=\"$width%\">$title ".$extra_head_html."</td>";
}
print "<td class=\"aws_blank\"> </td></tr>\n";
print "<tr><td colspan=\"2\">\n";