You are here

public function dsDisplay::regionOrderFields in Display Suite 6.3

Order fields for a region

@todo this will need to be swapped out for nested ordering wttk

1 call to dsDisplay::regionOrderFields()
dsDisplay::render in includes/dsDisplay.php
Render content

File

includes/dsDisplay.php, line 445
Class definition for a Display Suite Display object

Class

dsDisplay
The Display Suite Display object

Code

public function regionOrderFields($region_name) {
  if (isset($this->regions[$region_name])) {
    asort($this->regions[$region_name]['#field_weights']);
  }
}