API15

API15:JQuery/where

From Joomla! Documentation

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

[Edit Descripton]

Template:Description:JQuery/where

Syntax

where($conditions, $glue='AND')
Parameter Name Default Value Description
$conditions A string or array of where conditions
$glue 'AND'

Defined in

libraries/joomla/database/query.php

Importing

jimport( 'joomla.database.query' );

Source Body

public function where($conditions, $glue='AND')
{
        if (is_null($this->_where)) {
                $glue = strtoupper($glue);
                $this->_where = new JQueryElement('WHERE', $conditions, "\n\t$glue ");
        } else {
                $this->_where->append($conditions);
        }

        return $this;
}

[Edit See Also] Template:SeeAlso:JQuery/where

Examples

<CodeExamplesForm />