19 declare(strict_types=1);
32 return [static::PROP_SELECTION_OPTIONS, static::PROP_SELECTION_TYPE];
47 =
" 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 = " 48 .
$ilDB->quote($this->
getId(),
'integer') .
") ";
50 $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";
53 if ($filter_value ==
'none') {
55 .
"filter_stloc_{$this->getId()}.value IS NULL " 56 .
" OR filter_stloc_{$this->getId()}.value = " .
$ilDB->quote(
"",
'text')
57 .
" OR filter_stloc_{$this->getId()}.value = " .
$ilDB->quote(
"[]",
'text')
62 "filter_stloc_{$this->getId()}.value = " .
$ilDB->quote(
"[$filter_value]",
'text') .
" OR " .
63 "filter_stloc_{$this->getId()}.value LIKE " .
$ilDB->quote(
"%\"$filter_value\"%",
'text') .
" OR " .
64 "filter_stloc_{$this->getId()}.value LIKE " .
$ilDB->quote(
"%,$filter_value,%",
'text') .
" OR " .
65 "filter_stloc_{$this->getId()}.value LIKE " .
$ilDB->quote(
"%[$filter_value,%",
'text') .
" OR " .
66 "filter_stloc_{$this->getId()}.value LIKE " .
$ilDB->quote(
"%,$filter_value]%",
'text') .
69 $where_str .=
"filter_stloc_{$this->getId()}.value = " 70 .
$ilDB->quote($filter_value,
'integer');
77 $sql_obj->setJoinStatement($join_str);
78 $sql_obj->setWhereStatement($where_str);
85 return ($this->
getProperty(static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
90 $options_post_var =
"prop_" . static::PROP_SELECTION_OPTIONS;
91 foreach ($form->
getInput($options_post_var) as $value) {
92 if ($value[
"selection_value"] ==
"") {
94 $inputObj->setAlert($this->
lng->txt(
"msg_input_is_required"));
99 return parent::checkFieldCreationInput($form);
112 $value = $form->
getInput($representation->getPropertyInputFieldId($property));
116 if (is_array($value)) {
117 foreach ($value as $k => $v) {
119 $value[$k] = array_shift($v);
125 if (!empty($value) || ($this->
getPropertyInstance($property) !=
null && $property != self::PROP_PLUGIN_HOOK_NAME)) {
139 'field_id' => $this->
getId(),
147 foreach ($properties as $prop) {
148 if ($prop == static::PROP_SELECTION_OPTIONS) {
151 foreach ($options as $option) {
153 $prop_values[$option->getOptId()] = [
'selection_value' => $option->getValue()];
156 $values[
'prop_' . $prop] = $prop_values;
158 $values[
'prop_' . $prop] = $this->
getProperty($prop);
174 case static::PROP_SELECTION_OPTIONS:
178 foreach ($value as
$id => $val) {
179 ilDclSelectionOption::storeOption((
int) $this->
getId(),
$id, $sorting, $val);
187 case static::PROP_SELECTION_TYPE:
188 $will_be_multi = ($value == self::SELECTION_TYPE_MULTI);
190 if ($is_update && ($this->
isMulti() && !$will_be_multi || !$this->
isMulti() && $will_be_multi)) {
193 parent::setProperty($key, $value)->store();
196 parent::setProperty($key, $value)->store();
210 $record_field = $record->getRecordField((
int) $this->
getId());
211 $record_field_value = $record_field->getValue();
213 if (is_array($record_field_value) && count($record_field_value) > 1) {
216 foreach ($options as $option) {
217 if (in_array($option->getOptId(), $record_field_value)) {
218 $sorted_array[] = $option->getOptId();
221 $record_field->setValue($sorted_array);
222 $record_field->doUpdate();
233 $record_field = $record->getRecordField((
int) $this->
getId());
234 $record_field_value = $record_field->getValue();
236 if ($record_field_value && !is_array($record_field_value) && $is_multi_now) {
237 $record_field->setValue([$record_field_value]);
238 $record_field->doUpdate();
240 if (is_array($record_field_value) && !$is_multi_now) {
241 $record_field->setValue(array_shift($record_field_value));
242 $record_field->doUpdate();
255 case static::PROP_SELECTION_OPTIONS:
258 return parent::getProperty($key);
263 string $direction =
"asc",
264 bool $sort_by_status =
false 272 $select_str =
"sel_opts_{$this->getId()}.value AS field_{$this->getId()}";
274 =
"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 = " 275 . $this->db->quote($this->
getId(),
'integer') .
") ";
276 $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) ";
277 $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 = " 278 . $this->db->quote($this->
getId(),
'integer') .
") ";
280 $sql_obj->setSelectStatement($select_str);
281 $sql_obj->setJoinStatement($join_str);
282 $sql_obj->setOrderStatement(
"field_{$this->getId()} $direction , ID ASC");
289 parent::cloneProperties($originalField);
291 foreach ($options as $opt) {
293 $new_opt->cloneOption($opt);
294 $new_opt->setFieldId((
int) $this->
getId());
309 $will_be_multi = ($form->
getInput(
'prop_' . static::PROP_SELECTION_TYPE) == self::SELECTION_TYPE_MULTI);
311 return $this->
isMulti() && !$will_be_multi;
317 $prop_selection_options = $representation->getPropertyInputFieldId(static::PROP_SELECTION_OPTIONS);
318 $prop_selection_type = $representation->getPropertyInputFieldId(static::PROP_SELECTION_TYPE);
320 $ilConfirmationGUI = parent::getConfirmationGUI($form);
321 $ilConfirmationGUI->setHeaderText($this->
lng->txt(
'dcl_msg_mc_to_sc_confirmation'));
322 $ilConfirmationGUI->addHiddenItem($prop_selection_type, $form->
getInput($prop_selection_type));
323 foreach ($form->
getInput($prop_selection_options) as $key => $option) {
324 $ilConfirmationGUI->addHiddenItem(
325 $prop_selection_options .
"[$key][selection_value]",
326 $option[
'selection_value']
330 return $ilConfirmationGUI;
getPropertyInstance(string $key)
const SELECTION_TYPE_SINGLE
setProperty(string $key, $value)
getRecordQuerySortObject(string $direction="asc", bool $sort_by_status=false)
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
const SELECTION_TYPE_MULTI
const PROP_SELECTION_OPTIONS
cloneProperties(ilDclBaseFieldModel $originalField)
checkFieldCreationInput(ilPropertyFormGUI $form)
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
const PROP_SELECTION_TYPE
getTableId()
Get table id.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
fillPropertiesForm(ilPropertyFormGUI &$form)
static flushOptions(int $field_id)
getValidFieldProperties()
const SELECTION_TYPE_COMBOBOX
static getAllForField(int $field_id)
static getTableCache(?int $table_id=null)
getDescription()
Get description.
storePropertiesFromForm(ilPropertyFormGUI $form)
called when saving the 'edit field' form
isConfirmationRequired(ilPropertyFormGUI $form)
multiPropertyChanged(bool $is_multi_now)
changes the values of all record fields, since the property "multi" has changed
reorderExistingValues()
sorts record field values by the new order
getDatatypeId()
Get datatype_id.
getConfirmationGUI(ilPropertyFormGUI $form)