ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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}