public EntityDisplayFormBase::reduceOrder($array, $a)
Determines the rendering order of an array representing a tree.
Callback for array_reduce() within \Drupal\field_ui\Form\EntityDisplayFormBase::tablePreRender().
File
- core/modules/field_ui/src/Form/EntityDisplayFormBase.php, line 700
Class
- EntityDisplayFormBase
- Base class for EntityDisplay edit forms.
Namespace
Drupal\field_ui\Form
Code
1 2 3 | public function reduceOrder( $array , $a ) { return FieldUiTable::reduceOrder( $array , $a ); } |
Please login to continue.