ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilAssOrderingDefaultElementFallback.php
Go to the documentation of this file.
1<?php
2
26{
27 public function manipulateFormInputValues(array $inputValues): array
28 {
29 if (!count($inputValues)) {
31
32 $inputValues[$defaultElement->getRandomIdentifier()] = $defaultElement;
33 }
34
35 return $inputValues;
36 }
37
38 public function manipulateFormSubmitValues(array $submitValues): array
39 {
40 return $submitValues;
41 }
42}