blob: 82c82db3f044064811f48ed11be2038e44dfaca8 (
plain)
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>Accounting Menu - LedgerSMB Version 1.2.7 - Chris Travers - metatron_ledger</title>
- <meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="-1" />
- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" />
- <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
- <meta name="robots" content="noindex,nofollow" />
-
- <script type="text/javascript">
- function SwitchMenu(obj) {
- if (document.getElementById) {
- var el = document.getElementById(obj);
- if (el.style.display == "none") {
- el.style.display = "block"; //display the block of info
- } else {
- el.style.display = "none";
- }
- }
- }
- document.onselectstart = new Function("return false");
- </script>
- </head>
- <body class="menu">
- <img class="cornderlogo" src="images/ledgersmb_small.png" width="100" height="50" border="1" alt="ledger-smb" />
- <?lsmb FOREACH item = subs ?>
- <?lsmb old_id = id ?><?lsmb old_path = path ?>
- <?lsmb id = item.id ?><?lsmb path = item.path ?>
- <?lsmb IF (id != old_id) AND id ?>
- <?lsmb desc_ids = [id, ''] ?>
- <?lsmb asc_ids = [old_id, ''] ?>
- <?lsmb IF old_id.search(desc_ids.join('--')) ?>
- <div id="sub_<?lsmb old_id ?>" class="Submenu">
- <?lsmb ELSIF id.search(asc_ids.join('--')) ?>
- </div>
- <?lsmb END ?>
- <?lsmb END ?>
- <div class="Menu" id="menu_<?lsmb id ?>">
- <a href="<?lsmb IF item.module ?><?lsmb item.module
- ?><?lsmb ELSE ?>menu.pl<?lsmb END
- ?>?login=<?lsmb login
- ?><?lsmb FOREACH key IN item.keys ?>&<?lsmb key
- ?>=<?lsmb item.$key ?><?lsmb END ?>"
- target = "main_window"
- onclick="return <?lsmb IF item.module
- ?>SwitchMenu(<?lsmb id ?>)<?lsmb END ?>"
- class = "<?lsmb IF item.module ?>Menu<?lsmb
- ELSE ?>Item<?lsmb END ?>"
- ><?lsmb text(item.label) ?></a>
- </div>
- <?lsmb END ?>
-
-
- </body>
- </html>
|