public static function SortArray::sortByWeightProperty

public static SortArray::sortByWeightProperty($a, $b)

Sorts a structured array by '#weight' property.

Callback for uasort().

Parameters

array $a: First item for comparison. The compared items should be associative arrays that optionally include a '#weight' key.

array $b: Second item for comparison.

Return value

int The comparison result for uasort().

File

core/lib/Drupal/Component/Utility/SortArray.php, line 48

Class

SortArray
Provides generic array sorting helper methods.

Namespace

Drupal\Component\Utility

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Utility!SortArray.php/function/SortArray::sortByWeightProperty/8.1.x