API15:JDocument/setMimeEncoding
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Sets the document MIME encoding that is sent to the browser.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setMimeEncoding($type= 'text/html')
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | 'text/html' | $type public |
Returns
void
Defined in
libraries/joomla/document/document.php
Importing
jimport( 'joomla.document.document' );
Source Body
function setMimeEncoding($type = 'text/html') { $this->_mime = strtolower($type); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
