<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Laurent Bedubourg <hide@address.com>
* @author Kornel LesiÅski <hide@address.com>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: DocumentType.php 794 2009-11-27 11:54:13Z kornel $
* @link http://phptal.org/
*/
/**
* Document doctype representation.
*
* @package PHPTAL
* @subpackage Dom
*/
class PHPTAL_Dom_DocumentType extends PHPTAL_Dom_Node
{
public function generateCode(PHPTAL_Php_CodeWriter $codewriter)
{
if ($codewriter->getOutputMode() === PHPTAL::HTML5) {
$codewriter->setDocType('<!DOCTYPE html>');
} else {
$codewriter->setDocType($this->getValueEscaped());
}
$codewriter->doDoctype();
}
}