DirectorObjectForm: another fixed order

refs #2041
This commit is contained in:
Thomas Gelf 2020-12-01 05:50:33 +01:00
parent db51fb4280
commit bb2401017e

View File

@ -26,6 +26,7 @@ abstract class DirectorObjectForm extends DirectorForm
const GROUP_ORDER_OBJECT_DEFINITION = 20; const GROUP_ORDER_OBJECT_DEFINITION = 20;
const GROUP_ORDER_RELATED_OBJECTS = 25; const GROUP_ORDER_RELATED_OBJECTS = 25;
const GROUP_ORDER_ASSIGN = 30; const GROUP_ORDER_ASSIGN = 30;
const GROUP_ORDER_CHECK_EXECUTION = 40;
const GROUP_ORDER_CUSTOM_FIELDS = 50; const GROUP_ORDER_CUSTOM_FIELDS = 50;
const GROUP_ORDER_CUSTOM_FIELD_CATEGORIES = 60; const GROUP_ORDER_CUSTOM_FIELD_CATEGORIES = 60;
const GROUP_ORDER_EVENT_FILTERS = 700; const GROUP_ORDER_EVENT_FILTERS = 700;
@ -331,7 +332,7 @@ abstract class DirectorObjectForm extends DirectorForm
return $this->addElementsToGroup( return $this->addElementsToGroup(
$elements, $elements,
'check_execution', 'check_execution',
60, self::GROUP_ORDER_CHECK_EXECUTION,
$this->translate('Check execution') $this->translate('Check execution')
); );
} }