Den fulde PHP kildekode for head klassen
<?php/** * 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.11 * @since 27-nov-2009 *//** * 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 requiredCssTable::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();?>