6.0.0-git
2024-04-25

Diff for ExpandIMPMenus between 1 and 2

By defaultdefault, menus in ImpIMP and in Horde in general, are collapsed. They have a little (+) plus sign next to them which you click to expand the menu.

This explains how to make menus expanded by default.



The following was tested on Debian Sarge only, so the location of your files may vary.



Find 'horde3/imp/lib/Block/tree_folders.php'Find {{horde/imp/lib/Block/tree_folders.php}} and look for the $tree->addNode{{$tree->addNode}} entry that affects the menu that you want to change.



Under

Under a Debian Sarge installation the file is located under::



 /usr/share/horde3/imp/lib/Block/tree_folders.php



Inunder {{/usr/share/horde3/imp/lib/Block/tree_folders.php}}.

In line 159 - 161: the expand option defaults to false change it to true (see example below)::



 $tree->addNode($parent,below):

<code type="php">
$tree->addNode($parent, $registry->get('menu_parent', $parent),

                 sprintf('<b>%s</b>
               sprintf('<b>%s</b> (%s)', $registry->get('name', $parent), $unseen),

               $indent - 1, true, $node_params);

</code>