API16:JDatabaseQueryElement/ construct
From Joomla! Documentation
Description
Constructor.
<! removed transcluded page call, red link never existed >
Syntax
__construct($name, $elements, $glue=',')
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | The name of the element. | |
| $elements | String or array. | |
| $glue | ',' | The glue for elements. |
Defined in
libraries/joomla/database/databasequery.php
Importing
jimport( 'joomla.database.databasequery' );
Source Body
public function __construct($name, $elements, $glue=',')
{
$this->_elements = array();
$this->_name = $name;
$this->_glue = $glue;
$this->append($elements);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples