$PageLogoUrl
$PageLogoUrl
contains the URL of an image to be display in the location of the logo. See LayoutBasics.
$PageLogoUrl
= "http://server.com/mylogo.gif";
$PageLogoFmt
$PageLogoFmt
= "<div id='wikilogo'><a href='$ScriptUrl
'><img src='$PageLogoUrl
' alt='$WikiTitle
' border='0' /></a></div>";
$PageTemplateFmt
$PageTemplateFmt
= 'pub/skins/pmwiki/pmwiki.tmpl';
$PrintTemplateFmt
?action=print
).
$PrintTemplateFmt
= 'pub/skins/print/print.tmpl';
$PageStartFmt
$PageEndFmt
$PageStartFmt
and $PageEndFmt
are initialized by code in scripts/tlayout.php, which builds the values of $PageStartFmt
and $PageEndFmt
from the information in the "template file" specified by $PageTemplateFmt
.
$PageHeaderFmt
$PageFooterFmt
$PageTitleFmt
[[noheader]]
, [[nofooter]]
, and [[notitle]]
directives to work. In a typical installation, these variables are initialized as part of processing the template files in scripts/tlayout.php and then placed by reference into the $PageStartFmt
or $PageEndFmt
variables. Other functions (such as ProcessTextDirectives) can then suppress or change the display of the corresponding output by simply setting these variables to an empty string or other value.
$HTMLLineBreak
$HTMLLineBreak
to generate a <br />
tag:
$HTMLLineBreak
= '<br />';