API16

JDocumentRenderer/ construct: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 36: Line 36:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=__construct
  category=__construct
  category=JDocumentRenderer
  category=JDocumentRenderer
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:33, 25 March 2017

Description

Class constructor


<! removed transcluded page call, red link never existed >

Syntax

__construct(&$doc)
Parameter Name Default Value Description
&$doc A reference to the object that instantiated the renderer

Defined in

libraries/joomla/document/renderer.php

Importing

jimport( 'joomla.document.renderer' );

Source Body

function __construct(&$doc) {
        $this->_doc = &$doc;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples