ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDclSelectionFieldModel.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
10 {
11  const SELECTION_TYPE_SINGLE = 'selection_type_single';
12  const SELECTION_TYPE_MULTI = 'selection_type_multi';
13  const SELECTION_TYPE_COMBOBOX = 'selection_type_combobox';
14  // those should be overwritten by subclasses
15  const PROP_SELECTION_TYPE = '';
17 
18 
22  public function getValidFieldProperties()
23  {
24  return array(static::PROP_SELECTION_OPTIONS, static::PROP_SELECTION_TYPE);
25  }
26 
27 
35  public function getRecordQueryFilterObject($filter_value = "", ilDclBaseFieldModel $sort_field = null)
36  {
37  global $DIC;
38  $ilDB = $DIC['ilDB'];
39 
40  $join_str
41  = " LEFT JOIN il_dcl_record_field AS filter_record_field_{$this->getId()} ON (filter_record_field_{$this->getId()}.record_id = record.id AND filter_record_field_{$this->getId()}.field_id = "
42  . $ilDB->quote($this->getId(), 'integer') . ") ";
43 
44  $join_str .= " LEFT JOIN il_dcl_stloc{$this->getStorageLocation()}_value AS filter_stloc_{$this->getId()} ON (filter_stloc_{$this->getId()}.record_field_id = filter_record_field_{$this->getId()}.id";
45 
46  $where_str = " AND ";
47  if ($filter_value == 'none') {
48  $where_str .= "("
49  . "filter_stloc_{$this->getId()}.value IS NULL "
50  . " OR filter_stloc_{$this->getId()}.value = " . $ilDB->quote("", 'text')
51  . " OR filter_stloc_{$this->getId()}.value = " . $ilDB->quote("[]", 'text')
52  . ") ";
53  } else {
54  if ($this->isMulti()) {
55  $where_str .= " (" .
56  "filter_stloc_{$this->getId()}.value = " . $ilDB->quote("[$filter_value]", 'text') . " OR " .
57  "filter_stloc_{$this->getId()}.value LIKE " . $ilDB->quote("%\"$filter_value\"%", 'text') . " OR " .
58  "filter_stloc_{$this->getId()}.value LIKE " . $ilDB->quote("%,$filter_value,%", 'text') . " OR " .
59  "filter_stloc_{$this->getId()}.value LIKE " . $ilDB->quote("%[$filter_value,%", 'text') . " OR " .
60  "filter_stloc_{$this->getId()}.value LIKE " . $ilDB->quote("%,$filter_value]%", 'text') .
61  ") ";;
62  } else {
63  $where_str .= "filter_stloc_{$this->getId()}.value = "
64  . $ilDB->quote($filter_value, 'integer');
65  }
66  }
67 
68  $join_str .= ") ";
69 
70  $sql_obj = new ilDclRecordQueryObject();
71  $sql_obj->setJoinStatement($join_str);
72  $sql_obj->setWhereStatement($where_str);
73 
74  return $sql_obj;
75  }
76 
77 
78  public function isMulti()
79  {
80  return ($this->getProperty(static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
81  }
82 
83 
92  {
94 
95  $field_props = $this->getValidFieldProperties();
96  foreach ($field_props as $property) {
97  $value = $form->getInput($representation->getPropertyInputFieldId($property));
98 
99  // break down the multidimensional array from the multi input
100  // e.g.: { [0] => { [0] => 'x' }, [1] => { [1] => 'y' } } TO { [0] => 'x', [1] => 'y' }
101  if (is_array($value)) {
102  foreach ($value as $k => $v) {
103  if (is_array($v)) {
104  $value[$k] = array_shift($v);
105  }
106  }
107  }
108 
109  // save non empty values and set them to null, when they already exist. Do not override plugin-hook when already set.
110  if (!empty($value) || ($this->getPropertyInstance($property) != null && $property != self::PROP_PLUGIN_HOOK_NAME)) {
111  $this->setProperty($property, $value);
112  }
113  }
114  }
115 
116 
122  public function fillPropertiesForm(ilPropertyFormGUI &$form)
123  {
124  $values = array(
125  'table_id' => $this->getTableId(),
126  'field_id' => $this->getId(),
127  'title' => $this->getTitle(),
128  'datatype' => $this->getDatatypeId(),
129  'description' => $this->getDescription(),
130  'unique' => $this->isUnique(),
131  );
132 
133  $properties = $this->getValidFieldProperties();
134  foreach ($properties as $prop) {
135  if ($prop == static::PROP_SELECTION_OPTIONS) {
136  $options = ilDclSelectionOption::getAllForField($this->getId());
137  $prop_values = array();
138  foreach ($options as $option) {
139  // the 'selection_value' is for a correct input
140  $prop_values[$option->getOptId()] = array('selection_value' => $option->getValue());
141  }
142 
143  $values['prop_' . $prop] = $prop_values;
144  } else {
145  $values['prop_' . $prop] = $this->getProperty($prop);
146  }
147  }
148 
149  $form->setValuesByArray($values);
150 
151  return true;
152  }
153 
154 
159  public function setProperty($key, $value)
160  {
161  $is_update = $this->getProperty($key);
162  switch ($key) {
163  case static::PROP_SELECTION_OPTIONS:
164 
166  $sorting = 1;
167  foreach ($value as $id => $val) {
168  ilDclSelectionOption::storeOption($this->getId(), $id, $sorting, $val);
169  $sorting++;
170  }
171  // if the field is not being created reorder the options in the existing record fields
172  if ($is_update) {
173  $this->reorderExistingValues();
174  }
175  break;
176  case static::PROP_SELECTION_TYPE:
177  $will_be_multi = ($value == self::SELECTION_TYPE_MULTI);
178  // if the "Multi" property has changed, adjust the record field values
179  if ($is_update && ($this->isMulti() && !$will_be_multi || !$this->isMulti() && $will_be_multi)) {
180  $this->multiPropertyChanged($will_be_multi);
181  }
182  parent::setProperty($key, $value)->store();
183  break;
184  default:
185  parent::setProperty($key, $value)->store();
186  }
187  }
188 
189 
193  public function reorderExistingValues()
194  {
195  $options = ilDclSelectionOption::getAllForField($this->getId());
196  // loop each record(-field)
197  foreach (ilDclCache::getTableCache($this->getTableId())->getRecords() as $record) {
198  $record_field = $record->getRecordField($this->getId());
199  $record_field_value = $record_field->getValue();
200 
201  if (is_array($record_field_value) && count($record_field_value) > 1) {
202  $sorted_array = array();
203  // $options has the right order, so loop those
204  foreach ($options as $option) {
205  if (in_array($option->getOptId(), $record_field_value)) {
206  $sorted_array[] = $option->getOptId();
207  }
208  }
209  $record_field->setValue($sorted_array);
210  $record_field->doUpdate();
211  }
212  }
213  }
214 
215 
221  protected function multiPropertyChanged($is_multi_now)
222  {
223  foreach (ilDclCache::getTableCache($this->getTableId())->getRecords() as $record) {
224  $record_field = $record->getRecordField($this->getId());
225  $record_field_value = $record_field->getValue();
226 
227  if ($record_field_value && !is_array($record_field_value) && $is_multi_now) {
228  $record_field->setValue(array($record_field_value));
229  $record_field->doUpdate();
230  } else {
231  if (is_array($record_field_value) && !$is_multi_now) {
232  $record_field->setValue(array_shift($record_field_value));
233  $record_field->doUpdate();
234  }
235  }
236  }
237  }
238 
239 
245  public function getProperty($key)
246  {
247  switch ($key) {
248  case static::PROP_SELECTION_OPTIONS:
250  break;
251  default:
252  return parent::getProperty($key);
253  }
254  }
255 
256 
263  public function getRecordQuerySortObject($direction = "asc", $sort_by_status = false)
264  {
265  global $DIC;
266  $ilDB = $DIC['ilDB'];
267 
268  if ($this->isMulti()) {
269  return null;
270  }
271 
272  $sql_obj = new ilDclRecordQueryObject();
273 
274  $select_str = "sel_opts_{$this->getId()}.value AS field_{$this->getId()}";
275  $join_str
276  = "LEFT JOIN il_dcl_record_field AS sort_record_field_{$this->getId()} ON (sort_record_field_{$this->getId()}.record_id = record.id AND sort_record_field_{$this->getId()}.field_id = "
277  . $ilDB->quote($this->getId(), 'integer') . ") ";
278  $join_str .= "LEFT JOIN il_dcl_stloc{$this->getStorageLocation()}_value AS sort_stloc_{$this->getId()} ON (sort_stloc_{$this->getId()}.record_field_id = sort_record_field_{$this->getId()}.id) ";
279  //if ($this->isMulti()) {
280  // $join_str .= "LEFT JOIN il_dcl_sel_opts as sel_opts_{$this->getId()} ON (sel_opts_{$this->getId()}.opt_id = sort_stloc_{$this->getId()}.value->'$[0]' AND sel_opts_{$this->getId()}.field_id = " . $ilDB->quote($this->getId(), 'integer') . ") ";
281  //} else {
282  $join_str .= "LEFT JOIN il_dcl_sel_opts as sel_opts_{$this->getId()} ON (sel_opts_{$this->getId()}.opt_id = sort_stloc_{$this->getId()}.value AND sel_opts_{$this->getId()}.field_id = "
283  . $ilDB->quote($this->getId(), 'integer') . ") ";
284  //}
285 
286  $sql_obj->setSelectStatement($select_str);
287  $sql_obj->setJoinStatement($join_str);
288  $sql_obj->setOrderStatement("field_{$this->getId()} {$direction}");
289 
290  return $sql_obj;
291  }
292 
293 
294  public function cloneProperties(ilDclBaseFieldModel $originalField)
295  {
296  parent::cloneProperties($originalField);
297  $options = ilDclSelectionOption::getAllForField($originalField->getId());
298  foreach ($options as $opt) {
299  $new_opt = new ilDclSelectionOption();
300  $new_opt->cloneOption($opt);
301  $new_opt->setFieldId($this->getId());
302  $new_opt->store();
303  }
304  }
305 
306 
310  public function doDelete()
311  {
312  foreach (ilDclSelectionOption::getAllForField($this->getId()) as $option) {
313  $option->delete();
314  }
315  parent::doDelete();
316  }
317 
318 
323  {
324  $will_be_multi = ($form->getInput('prop_' . static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
325 
326  return $this->isMulti() && !$will_be_multi;
327  }
328 
329 
333  public function getConfirmationGUI(ilPropertyFormGUI $form)
334  {
335  global $DIC;
336  $representation = ilDclFieldFactory::getFieldRepresentationInstance($this);
337  $prop_selection_options = $representation->getPropertyInputFieldId(static::PROP_SELECTION_OPTIONS);
338  $prop_selection_type = $representation->getPropertyInputFieldId(static::PROP_SELECTION_TYPE);
339 
340  $ilConfirmationGUI = parent::getConfirmationGUI($form);
341  $ilConfirmationGUI->setHeaderText($DIC->language()->txt('dcl_msg_mc_to_sc_confirmation'));
342  $ilConfirmationGUI->addHiddenItem($prop_selection_type, $form->getInput($prop_selection_type));
343  foreach ($form->getInput($prop_selection_options) as $key => $option) {
344  $ilConfirmationGUI->addHiddenItem($prop_selection_options . "[$key][selection_value]", $option['selection_value']);
345  }
346 
347  return $ilConfirmationGUI;
348  }
349 }
Class ilDclBaseFieldModel.
This class represents a property form user interface.
Class ilDclRecordQueryObject.
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
Returns FieldRepresentation from BaseFieldModel.
getRecordQueryFilterObject($filter_value="", ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
getPropertyInstance($key)
Return ActiveRecord of property.
cloneProperties(ilDclBaseFieldModel $originalField)
static getTableCache($table_id=0)
fillPropertiesForm(ilPropertyFormGUI &$form)
Class ilDclSelectionFieldModel.
global $DIC
Definition: goto.php:24
multiPropertyChanged($is_multi_now)
changes the values of all record fields, since the property "multi" has changed
getInput($a_post_var, $ensureValidation=true)
Returns the value of a HTTP-POST variable, identified by the passed id.
getDescription()
Get description.
storePropertiesFromForm(ilPropertyFormGUI $form)
called when saving the &#39;edit field&#39; form
isConfirmationRequired(ilPropertyFormGUI $form)
getRecordQuerySortObject($direction="asc", $sort_by_status=false)
global $ilDB
Class ilDclSelectionOption.
setValuesByArray($a_values, $a_restrict_to_value_keys=false)
Set form values from an array.
reorderExistingValues()
sorts record field values by the new order
getDatatypeId()
Get datatype_id.
getConfirmationGUI(ilPropertyFormGUI $form)