94 lines
3 KiB
Perl
94 lines
3 KiB
Perl
package WebGUI::Style;
|
|
|
|
=head1 LEGAL
|
|
|
|
-------------------------------------------------------------------
|
|
WebGUI is Copyright 2001-2003 Plain Black LLC.
|
|
-------------------------------------------------------------------
|
|
Please read the legal notices (docs/legal.txt) and the license
|
|
(docs/license.txt) that came with this distribution before using
|
|
this software.
|
|
-------------------------------------------------------------------
|
|
http://www.plainblack.com info@plainblack.com
|
|
-------------------------------------------------------------------
|
|
|
|
=cut
|
|
|
|
|
|
use strict;
|
|
use Tie::CPHash;
|
|
use WebGUI::Session;
|
|
use WebGUI::SQL;
|
|
use WebGUI::Template;
|
|
|
|
|
|
=head1 NAME
|
|
|
|
Package WebGUI::Style
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This package contains utility methods for WebGUI's style system.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use WebGUI::Style;
|
|
$style = WebGUI::Style::get();
|
|
|
|
=head1 METHODS
|
|
|
|
These subroutines are available from this package:
|
|
|
|
=cut
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 get ( )
|
|
|
|
Returns a style based upon the current WebGUI session information.
|
|
|
|
=cut
|
|
|
|
sub get {
|
|
my ($header, $footer, %style, $styleId, @body);
|
|
tie %style, 'Tie::CPHash';
|
|
if ($session{form}{makePrintable}) {
|
|
$styleId = $session{form}{style} || 3;
|
|
} else {
|
|
$styleId = $session{page}{styleId} || 2;
|
|
}
|
|
%style = WebGUI::SQL->quickHash("select * from style where styleId=$styleId");
|
|
@body = split(/\^\-\;/,$style{body});
|
|
$header = $session{setting}{docTypeDec}."\n".'<!-- WebGUI '.$WebGUI::VERSION.' --> <html> <head> <title>';
|
|
$header .= $session{page}{title}.' - '.$session{setting}{companyName};
|
|
my $type = lc($session{setting}{siteicon});
|
|
$type =~ s/.*\.(.*?)$/$1/;
|
|
$header .= '</title>
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset='.($session{header}{charset}||$session{language}{characterSet}||"ISO-8859-1").'">
|
|
<link REL="icon" HREF="'.$session{setting}{siteicon}.'" TYPE="image/'.$type.'">
|
|
<LINK REL="SHORTCUT ICON" HREF="'.$session{setting}{favicon}.'">
|
|
'.$style{styleSheet}.$session{page}{metaTags};
|
|
if ($session{var}{adminOn}) {
|
|
# This "triple incantation" panders to the delicate tastes of various browsers for reliable cache suppression.
|
|
$header .= '<META HTTP-EQUIV="Pragma" CONTENT="no-cache">';
|
|
$header .= '<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate, max_age=0">';
|
|
$header .= '<META HTTP-EQUIV="Expires" CONTENT="0">';
|
|
}
|
|
if ($session{page}{defaultMetaTags}) {
|
|
$header .= '<meta http-equiv="Keywords" name="Keywords" content="'.$session{page}{title}
|
|
.', '.$session{setting}{companyName}.'">';
|
|
$header .= '<meta http-equiv="Description" name="Description" content="'.$session{page}{synopsis}.'">';
|
|
|
|
}
|
|
$header .= '</head>'.$body[0];
|
|
$footer = $body[1].' </html>';
|
|
return $header.$_[0].$footer;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|