You are here

public static function SortArray::sortByWeightElement in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/Utility/SortArray.php \Drupal\Component\Utility\SortArray::sortByWeightElement()

Sorts a structured array by the 'weight' element.

Note that the sorting is by the 'weight' array element, not by the render element property '#weight'.

Callback for uasort().

Parameters

array $a: First item for comparison. The compared items should be associative arrays that optionally include a 'weight' element. For items without a 'weight' element, a default value of 0 will be used.

array $b: Second item for comparison.

Return value

int The comparison result for uasort().

File

lib/Drupal/Component/Utility/SortArray.php, line 35
Contains \Drupal\Component\Utility\SortArray.

Class

SortArray
Provides generic array sorting helper methods.

Namespace

Drupal\Component\Utility

Code

public static function sortByWeightElement(array $a, array $b) {
  return static::sortByKeyInt($a, $b, 'weight');
}