bee

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/bee.git
Log | Files | Refs

GeneratorBase.class.php (400B)


      1 <?php
      2 
      3 class GeneratorBase
      4 {
      5 	function generate()
      6 	{
      7 		
      8 	}
      9 	
     10 	
     11 	function outputTheme()
     12 	{
     13 		global $PAGES_BY_CATEGORY;
     14 		global $PAGES_BY_KEYWORD;
     15 		global $PAGES_BY_DATE;
     16 		global $PAGES_RELATED;
     17 		global $PAGE;
     18 		global $KEYWORD_NAMES;
     19 		global $CATEGORY_NAMES;
     20 		
     21 		global $siteconfig;
     22 		extract($siteconfig,EXTR_PREFIX_ALL,'site');
     23 		
     24 		require( THEME_DIR.SLASH.THEME.'.php');
     25 		exit;
     26 	}
     27 	
     28 }
     29 
     30 
     31 ?>