24 return array(static::PROP_SELECTION_OPTIONS, static::PROP_SELECTION_TYPE);
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') .
") ";
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";
47 if ($filter_value ==
'none') {
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')
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') .
63 $where_str .=
"filter_stloc_{$this->getId()}.value = " 64 .
$ilDB->quote($filter_value,
'integer');
71 $sql_obj->setJoinStatement($join_str);
72 $sql_obj->setWhereStatement($where_str);
80 return ($this->
getProperty(static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
97 $value = $form->
getInput($representation->getPropertyInputFieldId($property));
101 if (is_array($value)) {
102 foreach ($value as $k => $v) {
104 $value[$k] = array_shift($v);
110 if (!empty($value) || ($this->
getPropertyInstance($property) != null && $property != self::PROP_PLUGIN_HOOK_NAME)) {
126 'field_id' => $this->
getId(),
134 foreach ($properties as $prop) {
135 if ($prop == static::PROP_SELECTION_OPTIONS) {
137 $prop_values = array();
138 foreach ($options as $option) {
140 $prop_values[$option->getOptId()] = array(
'selection_value' => $option->getValue());
143 $values[
'prop_' . $prop] = $prop_values;
145 $values[
'prop_' . $prop] = $this->
getProperty($prop);
163 case static::PROP_SELECTION_OPTIONS:
167 foreach ($value as
$id => $val) {
168 ilDclSelectionOption::storeOption($this->
getId(),
$id, $sorting, $val);
176 case static::PROP_SELECTION_TYPE:
177 $will_be_multi = ($value == self::SELECTION_TYPE_MULTI);
179 if ($is_update && ($this->
isMulti() && !$will_be_multi || !$this->
isMulti() && $will_be_multi)) {
182 parent::setProperty($key, $value)->store();
185 parent::setProperty($key, $value)->store();
198 $record_field = $record->getRecordField($this->
getId());
199 $record_field_value = $record_field->getValue();
201 if (is_array($record_field_value) && count($record_field_value) > 1) {
202 $sorted_array = array();
204 foreach ($options as $option) {
205 if (in_array($option->getOptId(), $record_field_value)) {
206 $sorted_array[] = $option->getOptId();
209 $record_field->setValue($sorted_array);
210 $record_field->doUpdate();
224 $record_field = $record->getRecordField($this->
getId());
225 $record_field_value = $record_field->getValue();
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();
231 if (is_array($record_field_value) && !$is_multi_now) {
232 $record_field->setValue(array_shift($record_field_value));
233 $record_field->doUpdate();
248 case static::PROP_SELECTION_OPTIONS:
252 return parent::getProperty($key);
266 $ilDB = $DIC[
'ilDB'];
274 $select_str =
"sel_opts_{$this->getId()}.value AS field_{$this->getId()}";
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) ";
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') .
") ";
286 $sql_obj->setSelectStatement($select_str);
287 $sql_obj->setJoinStatement($join_str);
288 $sql_obj->setOrderStatement(
"field_{$this->getId()} {$direction}");
296 parent::cloneProperties($originalField);
298 foreach ($options as $opt) {
300 $new_opt->cloneOption($opt);
301 $new_opt->setFieldId($this->
getId());
324 $will_be_multi = ($form->
getInput(
'prop_' . static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
326 return $this->
isMulti() && !$will_be_multi;
337 $prop_selection_options = $representation->getPropertyInputFieldId(static::PROP_SELECTION_OPTIONS);
338 $prop_selection_type = $representation->getPropertyInputFieldId(static::PROP_SELECTION_TYPE);
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']);
347 return $ilConfirmationGUI;
Class ilDclBaseFieldModel.
const SELECTION_TYPE_SINGLE
Class ilDclRecordQueryObject.
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
Returns FieldRepresentation from BaseFieldModel.
const SELECTION_TYPE_MULTI
getRecordQueryFilterObject($filter_value="", ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
const PROP_SELECTION_OPTIONS
getPropertyInstance($key)
Return ActiveRecord of property.
cloneProperties(ilDclBaseFieldModel $originalField)
static getTableCache($table_id=0)
static flushOptions($field_id)
const PROP_SELECTION_TYPE
getTableId()
Get table id.
fillPropertiesForm(ilPropertyFormGUI &$form)
static getAllForField($field_id)
getValidFieldProperties()
Class ilDclSelectionFieldModel.
const SELECTION_TYPE_COMBOBOX
multiPropertyChanged($is_multi_now)
changes the values of all record fields, since the property "multi" has changed
getDescription()
Get description.
storePropertiesFromForm(ilPropertyFormGUI $form)
called when saving the 'edit field' form
isConfirmationRequired(ilPropertyFormGUI $form)
getRecordQuerySortObject($direction="asc", $sort_by_status=false)
setProperty($key, $value)
Class ilDclSelectionOption.
reorderExistingValues()
sorts record field values by the new order
getDatatypeId()
Get datatype_id.
getConfirmationGUI(ilPropertyFormGUI $form)