API16

API16:JDatabaseQueryElement/ construct

From Joomla! Documentation

Revision as of 22:41, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Constructor. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Constructor.

[Edit Descripton]

Template:Description:JDatabaseQueryElement/ construct

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);
}

[Edit See Also] Template:SeeAlso:JDatabaseQueryElement/ construct

Examples

<CodeExamplesForm />