API15:JQueryElement/ construct
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
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
<CodeExamplesForm />
