|
|
TilbageNavn : head.php
PHP source code
Den fulde PHP kildekode for head klassen
<?
/**
* This file is the global head file
* The page is build with the myPHP TagLib
*
* @package template
* @filesource
* @see INC_PATH.PAGE_HEAD_FILE_NAME
* @copyright (c) http://Finn-Rasmussen.com
* @license http://Finn-Rasmussen.com/license/ myPHP License conditions
* @author http://Finn-Rasmussen.com
* @version 1.10
* @since 22-feb-2007
*/
/**
* The Document Type
*/
DocType::display();
HeadStart::display(LANGUAGE,$xmlns,$name);
Title::display($pageTitle);
/**
* The Meta tags
*/
Meta::display($pageTitle,$pageDescription,$pageKeyword,$pageKeywords,LANGUAGE);
/**
* The CSS files
*/
CssBase::display(); // Always required
CssTable::display();
CssForm::display();
CssLayout::display();
CssMenu::display();
CssTab::display();
CssComponent::display();
/**
* The javascript files
*/
Javascript::display();
/**
* The icon in the address line of the browser
*/
ShortcutIcon::display();
?>
|
|