API15:JQueryElement/ construct
From Joomla! Documentation
Description
Constructor
[<! removed edit link to red link >]
<! 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/query.php
Importing
jimport( 'joomla.database.query' );
Source Body
public function __construct($name, $elements, $glue=',')
{
$this->_elements = array();
$this->_name = $name;
$this->append($elements);
$this->_glue = $glue;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples