Elgg  Version master
HavingClause.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Database\Clauses;
4 
5 use Closure;
8 
12 class HavingClause extends Clause {
13 
17  public $expr;
18 
24  public function __construct($expr) {
25  $this->expr = $expr;
26  }
27 
31  public function prepare(QueryBuilder $qb, $table_alias = null) {
32  $having = $this->expr;
33 
34  if ($this->isCallable($having)) {
35  $having = $this->call($having, $qb, $table_alias);
36  }
37 
38  if ($having instanceof CompositeExpression || is_string($having)) {
39  $qb->andHaving($having);
40  }
41  }
42 }
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