Currently the new UI listing at 'admin/reports/libraries' shows the installed libraries ordered by their machine name, but they are displayed in the table using their Title, this means that the list is not alphabetical and hard to scan if you have a lot of libraries installed.
I think they should be sorted by title instead? patch attached.
| Comment | File | Size | Author |
|---|---|---|---|
| libraries_ui_with_ksort_before.png | 147.02 KB | rob holmes | |
| libraries_ui_with_uasort_after.png | 146.94 KB | rob holmes | |
| libraries-ui_sort_order-1-1.patch | 532 bytes | rob holmes |
Comments
Comment #2
rob holmes commentedComment #4
tstoecklerThanks! Totally makes sense. Anonymous functions were introduced in PHP 5.3, so I put this into a dedicated function. Also used
$aand$binstead of$xand$ybecause that is more standard, I think. Committed this to 7.x-2.x directly because those were really just cosmetic, your patch was great as it was.