Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
* @author Jaap Jansma <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
namespace Civi\DataProcessor\DataFlow\SqlDataFlow;
use Civi\DataProcessor\DataFlow\SqlDataFlow\WhereClauseInterface;
class AndClause implements WhereClauseInterface {
/**
* @var WhereClauseInterface[]
*/
protected $clauses = array();
protected $isJoinClause = FALSE;
/**
* OrClause constructor.
*
* @param WhereClauseInterface[] $clauses
*/
public function __construct($clauses=array(), $isJoinClause=FALSE) {
$this->isJoinClause = $isJoinClause;
$this->clauses = $clauses;
}
/**
* Add a where clause to this clause
*
* @param \Civi\DataProcessor\DataFlow\SqlDataFlow\WhereClauseInterface $clause
*/
public function addWhereClause(WhereClauseInterface $clause) {
$this->clauses[] = $clause;
}
/**
* Returns true when this where clause can be added to the
* join or whether this clause should be propagated to the where part of the query
*
* @return bool
*/
public function isJoinClause() {
return $this->isJoinClause;
}
/**
* Returns the where clause
* E.g. contact_type = 'Individual'
*
* @return string
*/
public function getWhereClause() {
if (count($this->clauses)) {
$clauses = array();
foreach($this->clauses as $clause) {
$clauses[] = "(". $clause->getWhereClause() . ")";
}
return "(" . implode(" AND ", $clauses) . ")";
}
return "1";
}
}