API15

JQuery/where: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 49: Line 49:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=where
  category=where
  category=JQuery
  category=JQuery
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:03, 25 March 2017

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

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

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples