API17

Difference between revisions of "JDocumentHTML"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::__construct/11.1|__construct]]
+
|[[API17:JDocumentHTML::__construct|__construct]]
 
|Class constructor.  
 
|Class constructor.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::addCustomTag/11.1|addCustomTag]]
+
|[[API17:JDocumentHTML::addCustomTag|addCustomTag]]
 
|Adds a custom html string to the head block.  
 
|Adds a custom html string to the head block.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::addFavicon/11.1|addFavicon]]
+
|[[API17:JDocumentHTML::addFavicon|addFavicon]]
 
|Adds a shortcut icon (favicon).  
 
|Adds a shortcut icon (favicon).  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::addHeadLink/11.1|addHeadLink]]
+
|[[API17:JDocumentHTML::addHeadLink|addHeadLink]]
 
|Adds <link> tags to the head of the document.  
 
|Adds <link> tags to the head of the document.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::countMenuChildren/11.1|countMenuChildren]]
+
|[[API17:JDocumentHTML::countMenuChildren|countMenuChildren]]
 
|Count the number of child menu items.  
 
|Count the number of child menu items.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::countModules/11.1|countModules]]
+
|[[API17:JDocumentHTML::countModules|countModules]]
 
|Count the modules based on the given condition.  
 
|Count the modules based on the given condition.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::getBuffer/11.1|getBuffer]]
+
|[[API17:JDocumentHTML::getBuffer|getBuffer]]
 
|Get the contents of a document include.  
 
|Get the contents of a document include.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::getHeadData/11.1|getHeadData]]
+
|[[API17:JDocumentHTML::getHeadData|getHeadData]]
 
|Get the html document head data.  
 
|Get the html document head data.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::mergeHeadData/11.1|mergeHeadData]]
+
|[[API17:JDocumentHTML::mergeHeadData|mergeHeadData]]
 
|Merge the html document head data.  
 
|Merge the html document head data.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::parse/11.1|parse]]
+
|[[API17:JDocumentHTML::parse|parse]]
 
|Parses the template and populates the buffer.  
 
|Parses the template and populates the buffer.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::render/11.1|render]]
+
|[[API17:JDocumentHTML::render|render]]
 
|Outputs the template to the browser.  
 
|Outputs the template to the browser.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::setBuffer/11.1|setBuffer]]
+
|[[API17:JDocumentHTML::setBuffer|setBuffer]]
 
|Set the contents a document includes.  
 
|Set the contents a document includes.  
 
|-
 
|-
 
|public  
 
|public  
|[[JDocumentHTML::setHeadData/11.1|setHeadData]]
+
|[[API17:JDocumentHTML::setHeadData|setHeadData]]
 
|Set the html document head data.  
 
|Set the html document head data.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JDocumentHTML::_fetchTemplate/11.1|_fetchTemplate]]
+
|[[API17:JDocumentHTML::_fetchTemplate|_fetchTemplate]]
 
|Fetch the template, and initialise the params.  
 
|Fetch the template, and initialise the params.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/document/html/html.php
 
* '''Defined in''' libraries/joomla/document/html/html.php
* '''Extends''' [[JDocument/11.1|JDocument]]
+
* '''Extends''' [[API17:JDocument|JDocument]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.document.html.html' );</source>
 
<source lang="php">jimport( 'joomla.document.html.html' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JDocumentHTML source code''' on [[jplatform:document/html/html.php|BitBucket]]
 
* {{JVer|11.1}} '''JDocumentHTML source code''' on [[jplatform:document/html/html.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Document/11.1|Document]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Document|Document]]
* [[JDocumentHTML|Other versions of JDocumentHTML]]
+
* [[API17:JDocumentHTML|Other versions of JDocumentHTML]]
 
{{SeeAlso:JDocumentHTML}}
 
{{SeeAlso:JDocumentHTML}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 20:29, 11 May 2013

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JDocumentHTML[edit]

Description[edit]

Template:Description:JDocumentHTML [Edit Descripton]

Methods[edit]

Visibility Method name Description
public __construct Class constructor.
public addCustomTag Adds a custom html string to the head block.
public addFavicon Adds a shortcut icon (favicon).
public addHeadLink Adds <link> tags to the head of the document.
public countMenuChildren Count the number of child menu items.
public countModules Count the modules based on the given condition.
public getBuffer Get the contents of a document include.
public getHeadData Get the html document head data.
public mergeHeadData Merge the html document head data.
public parse Parses the template and populates the buffer.
public render Outputs the template to the browser.
public setBuffer Set the contents a document includes.
public setHeadData Set the html document head data.
protected _fetchTemplate Fetch the template, and initialise the params.
  • Defined in libraries/joomla/document/html/html.php
  • Extends JDocument

Importing[edit]

jimport( 'joomla.document.html.html' );

See also[edit]

Template:SeeAlso:JDocumentHTML [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />