1 | <?php |
||
14 | abstract class Base implements CriterionHandler |
||
15 | { |
||
16 | /** |
||
17 | * Inner join `ezurl_object_link` table if not joined yet. |
||
18 | * |
||
19 | * @param \eZ\Publish\Core\Persistence\Database\SelectQuery $query |
||
20 | */ |
||
21 | protected function joinContentObjectLink(SelectQuery $query): void |
||
30 | |||
31 | /** |
||
32 | * Inner join `ezcontentobject` table if not joined yet. |
||
33 | * |
||
34 | * @param \eZ\Publish\Core\Persistence\Database\SelectQuery $query |
||
35 | */ |
||
36 | protected function joinContentObject(SelectQuery $query): void |
||
45 | |||
46 | /** |
||
47 | * Inner join `ezcontentobject_attribute` table if not joined yet. |
||
48 | * |
||
49 | * @param \eZ\Publish\Core\Persistence\Database\SelectQuery $query |
||
50 | */ |
||
51 | protected function joinContentObjectAttribute(SelectQuery $query): void |
||
66 | } |
||
67 |