You are here

protected function DashboardForm::sortBlocks in Draggable dashboard 8.2

Sort blocks by weight.

Parameters

array $a:

array $b:

Return value

int

File

src/Form/DashboardForm.php, line 50

Class

DashboardForm
Class DashboardForm.

Namespace

Drupal\draggable_dashboard\Form

Code

protected function sortBlocks($a, $b) {
  return $a['weight'] > $b['weight'] ? +1 : -1;
}