Elgg  Version 5.1
HavingClause.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Database\Clauses;
4 
7 
11 class HavingClause extends Clause {
12 
16  public $expr;
17 
23  public function __construct($expr) {
24  $this->expr = $expr;
25  }
26 
30  public function prepare(QueryBuilder $qb, $table_alias = null) {
31  $having = $this->expr;
32 
33  if ($this->isCallable($having)) {
34  $having = $this->call($having, $qb, $table_alias);
35  }
36 
37  if ($having instanceof CompositeExpression || is_string($having)) {
38  $qb->andHaving($having);
39  }
40  }
41 }
call($callback, QueryBuilder $qb, $table_alias=null)
Call the expression for the clause.
Definition: Clause.php:48
Interface that allows resolving statements and/or extending query builder.
Definition: Clause.php:14
Database abstraction query builder.
Extends QueryBuilder with HAVING clauses.
prepare(QueryBuilder $qb, $table_alias=null)
{}
isCallable($callback)
Check if a clause expression is callable.
Definition: Clause.php:35
$qb
Definition: queue.php:11