Elgg  Version master
SelectClause.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Database\Clauses;
4 
5 use Closure;
8 
12 class SelectClause 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  $select = $this->expr;
33 
34  if ($this->isCallable($select)) {
35  $select = $this->call($this->expr, $qb, $table_alias);
36  }
37 
38  if ($select instanceof CompositeExpression || is_string($select)) {
39  $qb->addSelect($select);
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
Extends QueryBuilder with SELECT clauses.
Database abstraction query builder.
isCallable($callback)
Check if a clause expression is callable.
Definition: Clause.php:35
prepare(QueryBuilder $qb, $table_alias=null)
{}
$qb
Definition: queue.php:11