<?php
/**
* A static class that holds MIME type constants, such as "text/html".
* @package diy-framework
* @subpackage view
* @author Martynas Jusevicius <hide@address.com>
* @link http://www.xml.lt
*/
class ContentType
{
const XHTML_XML = "application/xhtml+xml";
const TEXT_HTML = "text/html";
const APPLICATION_XML = "application/xml";
const APPLICATION_RDF_XML = "application/rdf+xml";
const APPLICATION_RSS_XML = "application/rss+xml";
}
?>