1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<?php
/*
* $Horde: accounts/menu.php,v 1.1.1.1.2.5 2005/01/03 11:25:41 jan Exp $
*
* Copyright 2001-2005 Eric Rostetter <eric.rostetter@physics.utexas.edu>
*
* See the enclosed file LICENSE for license information (BSD). If you
* did not receive this file, see http://www.horde.org/bsdl.php.
*/
define('ACCOUNTS_BASE', dirname(__FILE__));
include_once ACCOUNTS_BASE . '/lib/base.php';
require_once HORDE_BASE . '/lib/Menu.php';
/* Check for additional site-specific menu items (in config/menu.php). */
$additional_items = '';
if (@is_readable(ACCOUNTS_BASE . '/config/menu.php')) {
include_once ACCOUNTS_BASE . '/config/menu.php';
if (isset($_menu) && is_array($_menu)) {
foreach ($_menu as $item) {
$additional_items .= Menu::customItem($item);
}
}
}
require $registry->getTemplatePath() . '/menu/menu.inc';
/* Include the JavaScript for the help system (if enabled). */
if ($conf['user']['online_help'] && $browser->hasFeature('javascript')) {
Help::javascript();
}
?>
|