0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
themes
/
default
/
templates
/
[
Home
]
File: frameset.tmpl
<?php // -*-php-*- // rcs_id('$Id: frameset.tmpl 7589 2010-07-02 07:31:33Z vargenau $'); // This template is used for the FrameInclude plugin. $topurl = $request->getURLtoSelf(array('frame' => 'header')); $boturl = $request->getURLtoSelf(array('frame' => 'footer')); printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <?php echo Template('head') ?> <frameset rows="<?php echo $ROWS?>"> <frame name="header" src="<?php echo $topurl?>" <?php echo $FRAMEARGS ?>/> <?php echo $CONTENT_FRAME ?> <frame name="footer" src="<?php echo $boturl?>" <?php echo $FRAMEARGS ?>/> <noframes><?php echo Template('body') ?></noframes> </frameset> </html>