Source for file pageheader.php

Documentation is available at pageheader.php

  1. <?php
  2. /**
  3. * Header HTML that is included on every page
  4. *
  5. * This is only a sample implementation. Feel free to monkey to your heart's delight.
  6. *
  7. *  Note that three CSS files are used:
  8. *    1. bumblebee.css
  9. *                contains the specific classes that are used for bumblebee markup
  10. *    2. bumblebee-custom-colours.css
  11. *                contains customisations of the default ones (mainly for colour customisation)
  12. *    3. pagelayout.css
  13. *                contains other classes that are used by your own layout
  14. *
  15. @author    Stuart Prescott
  16. @copyright  Copyright Stuart Prescott
  17. @license    http://opensource.org/licenses/gpl-license.php GNU Public License
  18. @version    $Id$
  19. @package    Bumblebee
  20. @subpackage theme
  21. */
  22.  
  23. /** Load ancillary functions */
  24. require_once 'inc/typeinfo.php';
  25.  
  26. require_once 'inc/config.php';
  27. $conf ConfigReader::getInstance();
  28. $BasePath     $conf->BasePath;
  29. ?>
  30. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN"
  31.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  32.  
  33. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  34. <head>
  35.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  36.   <title><?php echo $pagetitle?></title>
  37.   <link rel="stylesheet" href="<?php echo $BasePath?>/theme/bumblebee.css" type="text/css" />
  38.   <link rel="stylesheet" href="<?php echo $BasePath?>/theme/bumblebee-custom-colours.css" type="text/css" />
  39.   <link rel="stylesheet" href="<?php echo $BasePath?>/theme/pagelayout.css" type="text/css" />
  40.   <link rel="icon" href="<?php echo $BasePath?>/theme/images/favicon.ico" />
  41.   <link rel="shortcut icon" href="<?php echo $BasePath?>/theme/images/favicon.ico" />
  42.  
  43. <?php
  44.   include 'inc/jsfunctions.php'
  45. ?>
  46. </head>

Documentation generated on Tue, 06 Mar 2007 10:01:47 +0000 by phpDocumentor 1.3.0