On 06.02.2014 20:31, Brett Charbeneau wrote: > > I found another wiki entry > > http://wiki.horde.org/CustomizeMenu > > which appears to indicate that a registry.local.php needs to be > created and additional code entered there. So I created a file by that > name and entered the code below, but still no joy. > > > // Custom Menus > 'questions' => array( > 'name' => _("Questions?"), > 'status' => 'heading', > ), > > 'faq' => array( > 'webroot' => FAQ/', > 'name' => _("FAQ"), > 'status' => 'active', > 'target' => '_blank', > 'menu_parent' => ' Questions?', > 'fileroot' => '/tmp', > 'icon' => ' QA.gif' > ),
Your registry.local.php needs to start with <?php A real-world registry.local.php entry would be --------------------------------------------------- <?php $this->applications['mywebsite'] = array('name' => 'Website', 'status' => 'link', 'url' => 'http://www.ralf-lang.de', 'menu_parent' => 'others', 'target' => '_new'); ----------------------------------------------- menu_parent points to the group/heading where the item should be placed. You can add own headings like so: $this->applications['mytools'] = array('name' => 'My Tools', 'status' => 'heading'); -- Ralf Lang Linux Consultant / Developer Tel.: +49-170-6381563 Mail: l...@b1-systems.de B1 Systems GmbH Osterfeldstraße 7 / 85088 Vohburg / http://www.b1-systems.de GF: Ralph Dehner / Unternehmenssitz: Vohburg / AG: Ingolstadt,HRB 3537
signature.asc
Description: OpenPGP digital signature
-- imp mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: imp-unsubscr...@lists.horde.org