Elgg
Version 4.3
|
Public Member Functions | ||||
__construct ($input=[], $flags=0, $iterator_class="ArrayIterator") | ||||
{} More... | ||||
__get ($name) | ||||
{} More... | ||||
__set ($name, $value) | ||||
{} More... | ||||
__unset ($name) | ||||
{} More... | ||||
__isset ($name) | ||||
{} More... | ||||
distinct ($distinct=true) | ||||
{Return DISTINCT rows.
| ||||
where (WhereClause $clause) | ||||
{Add where statement.
| ||||
select (SelectClause $clause) | ||||
{Add a select statement.
| ||||
join (JoinClause $clause) | ||||
{Add a join callback.
| ||||
groupBy (GroupByClause $clause) | ||||
{Add group by statement.
| ||||
having (HavingClause $clause) | ||||
{Add having statement.
| ||||
orderBy (OrderByClause $clause) | ||||
{Add order by statement.
| ||||
Definition at line 72 of file QueryOptions.php.
Elgg\Database\QueryOptions::__construct | ( | $input = [] , |
|
$flags = 0 , |
|||
$iterator_class = "ArrayIterator" |
|||
) |
{}
Definition at line 79 of file QueryOptions.php.
Elgg\Database\QueryOptions::__get | ( | $name | ) |
{}
Definition at line 87 of file QueryOptions.php.
Elgg\Database\QueryOptions::__isset | ( | $name | ) |
{}
Definition at line 110 of file QueryOptions.php.
Elgg\Database\QueryOptions::__set | ( | $name, | |
$value | |||
) |
{}
Definition at line 96 of file QueryOptions.php.
Elgg\Database\QueryOptions::__unset | ( | $name | ) |
{}
Definition at line 103 of file QueryOptions.php.
Elgg\Database\QueryOptions::distinct | ( | $distinct = true | ) |
{Return DISTINCT rows.
bool | $distinct | Distinct |
Implements Elgg\Database\QueryFiltering.
Definition at line 117 of file QueryOptions.php.
Elgg\Database\QueryOptions::groupBy | ( | GroupByClause | $clause | ) |
{Add group by statement.
GroupByClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 153 of file QueryOptions.php.
Elgg\Database\QueryOptions::having | ( | HavingClause | $clause | ) |
{Add having statement.
HavingClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 162 of file QueryOptions.php.
Elgg\Database\QueryOptions::join | ( | JoinClause | $clause | ) |
{Add a join callback.
JoinClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 144 of file QueryOptions.php.
Elgg\Database\QueryOptions::orderBy | ( | OrderByClause | $clause | ) |
{Add order by statement.
OrderByClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 171 of file QueryOptions.php.
Elgg\Database\QueryOptions::select | ( | SelectClause | $clause | ) |
{Add a select statement.
SelectClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 135 of file QueryOptions.php.
Elgg\Database\QueryOptions::where | ( | WhereClause | $clause | ) |
{Add where statement.
WhereClause | $clause | Clause |
Implements Elgg\Database\QueryFiltering.
Definition at line 126 of file QueryOptions.php.