API15:JQuery/from
From Joomla! Documentation
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
from($tables)
| Parameter Name | Default Value | Description |
|---|---|---|
| $tables | A string or array of table names |
Defined in
libraries/joomla/database/query.php
Importing
jimport( 'joomla.database.query' );
Source Body
public function from($tables)
{
if (is_null($this->_from)) {
$this->_from = new JQueryElement('FROM', $tables);
} else {
$this->_from->append($tables);
}
return $this;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples