ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilADTTextSearchBridgeSingle.php
Go to the documentation of this file.
1<?php
2
3require_once "Services/ADT/classes/Bridges/class.ilADTSearchBridgeSingle.php";
4
6{
7 const SQL_STRICT = 1;
8 const SQL_LIKE = 2;
9 const SQL_LIKE_END = 3;
10 const SQL_LIKE_START = 4;
11
12 protected function isValidADTDefinition(ilADTDefinition $a_adt_def)
13 {
14 return ($a_adt_def instanceof ilADTTextDefinition);
15 }
16
17 // table2gui / filter
18
19 public function loadFilter()
20 {
21 $value = $this->readFilter();
22 if ($value !== null) {
23 $this->getADT()->setText($value);
24 }
25 }
26
27
28 // form
29
30 public function addToForm()
31 {
32 $text = new ilTextInputGUI($this->getTitle(), $this->getElementId());
33 $text->setSize(20);
34 $text->setMaxLength(512);
35 $text->setSubmitFormOnEnter(true);
36
37 $text->setValue($this->getADT()->getText());
38
40 }
41
42 public function importFromPost(array $a_post = null)
43 {
44 $post = $this->extractPostValues($a_post);
45
46 if ($post && $this->shouldBeImportedFromPost($post)) {
47 if ($this->getForm() instanceof ilPropertyFormGUI) {
48 $item = $this->getForm()->getItemByPostVar($this->getElementId());
49 $item->setValue($post);
50 } elseif (array_key_exists($this->getElementId(), $this->table_filter_fields)) {
51 $this->table_filter_fields[$this->getElementId()]->setValue($post);
52 $this->writeFilter($post);
53 }
54
55 $this->getADT()->setText($post);
56 } else {
57 $this->writeFilter();
58 $this->getADT()->setText();
59 }
60 }
61
62
63 // db
64
65 public function getSQLCondition($a_element_id, $a_mode = self::SQL_LIKE, $a_value = null)
66 {
67 global $ilDB;
68
69 if (!$a_value) {
70 if ($this->isNull() || !$this->isValid()) {
71 return;
72 }
73 $a_value = $this->getADT()->getText();
74 }
75
76 switch ($a_mode) {
78 if (!is_array($a_value)) {
79 return $a_element_id . " = " . $ilDB->quote($a_value, "text");
80 } else {
81 return $ilDB->in($a_element_id, $a_value, "", "text");
82 }
83 break;
84
85 case self::SQL_LIKE:
86 if (!is_array($a_value)) {
87 return $ilDB->like($a_element_id, "text", "%" . $a_value . "%");
88 } else {
89 $tmp = array();
90 foreach ($a_value as $word) {
91 if ($word) {
92 $tmp[] = $ilDB->like($a_element_id, "text", "%" . $word . "%");
93 }
94 }
95 if (sizeof($tmp)) {
96 return "(" . implode(" OR ", $tmp) . ")";
97 }
98 }
99 break;
100
102 if (!is_array($a_value)) {
103 return $ilDB->like($a_element_id, "text", $a_value . "%");
104 }
105 break;
106
108 if (!is_array($a_value)) {
109 return $ilDB->like($a_element_id, "text", "%" . $a_value);
110 }
111 break;
112 }
113 }
114
115 public function isInCondition(ilADT $a_adt)
116 {
117 assert($a_adt instanceof ilADTText);
118
119 // :TODO: search mode (see above)
120 return $this->getADT()->equals($a_adt);
121 }
122
123
124 // import/export
125
126 public function getSerializedValue()
127 {
128 if (!$this->isNull() && $this->isValid()) {
129 return serialize(array($this->getADT()->getText()));
130 }
131 }
132
133 public function setSerializedValue($a_value)
134 {
135 $a_value = unserialize($a_value);
136 if (is_array($a_value)) {
137 $this->getADT()->setText($a_value[0]);
138 }
139 }
140}
An exception for terminatinating execution or to throw for unit testing.
ADT definition base class.
readFilter()
Load value(s) from filter store (in session)
extractPostValues(array $a_post=null)
Extract data from (post) values.
addToParentElement(ilFormPropertyGUI $a_field)
Add form field to parent element.
getElementId()
Get element id.
shouldBeImportedFromPost($a_post)
Check if incoming values should be imported at all.
writeFilter($a_value=null)
Write value(s) to filter store (in session)
isInCondition(ilADT $a_adt)
Compare directly against ADT.
isValidADTDefinition(ilADTDefinition $a_adt_def)
Check if given ADT definition is valid.
setSerializedValue($a_value)
Set current value(s) in serialized form (for easy persisting)
importFromPost(array $a_post=null)
Import values from (search) form request POST data.
getSerializedValue()
Get current value(s) in serialized form (for easy persisting)
loadFilter()
Load filter value(s) into ADT.
getSQLCondition($a_element_id, $a_mode=self::SQL_LIKE, $a_value=null)
addToForm()
Add ADT-specific fields to form.
ADT base class.
Definition: class.ilADT.php:12
This class represents a property form user interface.
This class represents a text property in a property form.
$post
Definition: post.php:34
global $ilDB
$text
Definition: errorreport.php:18