public static SortArray::sortByWeightElement(array $a, array $b)
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
- core/lib/Drupal/Component/Utility/SortArray.php, line 30
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'); }
Please login to continue.