ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.arJoin.php
Go to the documentation of this file.
1 <?php
2 
24 class arJoin extends arStatement
25 {
26  public const TYPE_NORMAL = self::TYPE_INNER;
27  public const TYPE_LEFT = 'LEFT';
28  public const TYPE_RIGHT = 'RIGHT';
29  public const TYPE_INNER = 'INNER';
30  public const AS_TEXT = ' AS ';
31  protected string $type = self::TYPE_NORMAL;
32  protected string $table_name = '';
33  protected array $fields = ['*'];
34  protected string $operator = '=';
35  protected string $on_first_field = '';
36  protected string $on_second_field = '';
37  protected bool $full_names = false;
38  protected bool $both_external = false;
39  protected bool $is_mapped = false;
40 
41  protected function asStatementText(ActiveRecord $activeRecord, ilDBInterface $db, string $as = ' AS '): string
42  {
43  $return = ' ' . $this->getType() . ' ';
44  $return .= ' JOIN ' . $this->getTableName() . $as . $this->getTableNameAs();
45  if ($this->getBothExternal()) {
46  $return .= ' ON ' . $db->quoteIdentifier($this->getOnFirstField()) . ' ' . $this->getOperator() . ' ';
47  } else {
48  $return .= ' ON ' . $db->quoteIdentifier($activeRecord->getConnectorContainerName()) . '.' . $this->getOnFirstField(
49  ) . ' ' . $this->getOperator() . ' ';
50  }
51 
52  return $return . $db->quoteIdentifier($this->getTableNameAs()) . '.' . $db->quoteIdentifier($this->getOnSecondField());
53  }
54 
55  public function asSQLStatement(ActiveRecord $activeRecord, ilDBInterface $db): string
56  {
57  return $this->asStatementText($activeRecord, $db, self::AS_TEXT);
58  }
59 
60  public function setLeft(): void
61  {
62  $this->setType(self::TYPE_LEFT);
63  }
64 
65  public function setRght(): void
66  {
67  $this->setType(self::TYPE_RIGHT);
68  }
69 
70  public function setInner(): void
71  {
72  $this->setType(self::TYPE_INNER);
73  }
74 
78  public function setFields(array $fields): void
79  {
80  $this->fields = $fields;
81  }
82 
86  public function getFields(): array
87  {
88  return $this->fields;
89  }
90 
91  public function setOnFirstField(string $on_first_field): void
92  {
93  $this->on_first_field = $on_first_field;
94  }
95 
96  public function getOnFirstField(): string
97  {
98  return $this->on_first_field;
99  }
100 
101  public function setOnSecondField(string $on_second_field): void
102  {
103  $this->on_second_field = $on_second_field;
104  }
105 
106  public function getOnSecondField(): string
107  {
108  return $this->on_second_field;
109  }
110 
111  public function setOperator(string $operator): void
112  {
113  $this->operator = $operator;
114  }
115 
116  public function getOperator(): string
117  {
118  return $this->operator;
119  }
120 
121  public function setTableName(string $table_name): void
122  {
123  $this->table_name = $table_name;
124  }
125 
126  public function getTableName(): string
127  {
128  return $this->table_name;
129  }
130 
131  public function setType(string $type): void
132  {
133  $this->type = $type;
134  }
135 
136  public function getType(): string
137  {
138  return $this->type;
139  }
140 
141  public function setBothExternal(bool $both_external): void
142  {
143  $this->both_external = $both_external;
144  }
145 
146  public function getBothExternal(): bool
147  {
148  return $this->both_external;
149  }
150 
151  public function setFullNames(bool $full_names): void
152  {
153  $this->full_names = $full_names;
154  }
155 
156  public function getFullNames(): bool
157  {
158  return $this->full_names;
159  }
160 
161  public function isIsMapped(): bool
162  {
163  return $this->is_mapped;
164  }
165 
166  public function setIsMapped(bool $is_mapped): void
167  {
168  $this->is_mapped = $is_mapped;
169  }
170 }
setTableName(string $table_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $type
string $on_second_field
quoteIdentifier(string $identifier, bool $check_option=false)
setOnSecondField(string $on_second_field)
array $fields
setBothExternal(bool $both_external)
const TYPE_LEFT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $is_mapped
getFullNames()
asStatementText(ActiveRecord $activeRecord, ilDBInterface $db, string $as=' AS ')
string $on_first_field
const TYPE_INNER
getTableName()
setType(string $type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOperator(string $operator)
const AS_TEXT
asSQLStatement(ActiveRecord $activeRecord, ilDBInterface $db)
getBothExternal()
string $table_name
const TYPE_NORMAL
setFullNames(bool $full_names)
bool $full_names
getConnectorContainerName()
Return the Name of your Connector Table
setOnFirstField(string $on_first_field)
getOnFirstField()
const TYPE_RIGHT
getOnSecondField()
bool $both_external
setFields(array $fields)
setIsMapped(bool $is_mapped)