JDocumentFeed/ construct: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 40: | Line 40: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=__construct | category=__construct | ||
category=JDocumentFeed | category=JDocumentFeed | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:32, 25 March 2017
Description
Class constructor
<! removed transcluded page call, red link never existed >
Syntax
__construct($options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | array() | $options Associative array of options |
Defined in
libraries/joomla/document/feed/feed.php
Importing
jimport( 'joomla.document.feed.feed' );
Source Body
function __construct($options = array())
{
parent::__construct($options);
//set document type
$this->_type = 'feed';
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples