ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.arEditFields.php
Go to the documentation of this file.
1<?php
2require_once('./Services/ActiveRecord/Views/class.arViewField.php');
3require_once('./Services/ActiveRecord/Views/class.arViewFields.php');
4
13
14 const FIELD_CLASS = 'arEditField';
15
16
20 public function sortFields() {
21 uasort($this->fields, function (arEditField $field_a, arEditField $field_b) {
22 //If both fields are or are not subelements, then let the position decide which is displayed first
23 if (($field_a->getSubelementOf()) == ($field_b->getSubelementOf())) {
24 return $field_a->getPosition() > $field_b->getPosition();
25 } //If only one of the elements is a subelement, then the other has to be generated first
26 else {
27 return $field_a->getSubelementOf();
28 }
29 });
30 }
31}
GUI-Class arEditField.
GUI-Class arEditFields.
GUI-Class arViewFields.
$errors fields
Definition: imgupload.php:48