1
Hi -
Would it be a good idea to sort lists of blocks, modules, etc., in the admin interface?
It just seems to be more convenient if they are alphabetized.
For example, if you add this code to blocksadmin.php, replacing line 116: "foreach (array_keys($block_arr) as $i) {"
// Sort blocks by name
$original_keys = array_keys($block_arr);
$sorted_keys = array();
foreach ($original_keys as $i)
$sorted_keys[$i] = $block_arr[$i]->getVar("name");
asort($sorted_keys);
foreach ($sorted_keys as $i => $notusedatall) {
The list of blocks is alphabetized by name, which I find saves me time.
Tom