X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=templates%2Fdefault%2Fleft_main.tpl;h=6d9169c78c859ed63b12d9f0867ddad623c2ad67;hb=8e8072b314f5f49892d3abced9f15cfedd0ae521;hp=9fb938ab2fbcebd1500a8cde7e0f88dc1b209d11;hpb=a9527551fc4be07a5e2974e3fa8ab691415be1d1;p=squirrelmail.git diff --git a/templates/default/left_main.tpl b/templates/default/left_main.tpl index 9fb938ab..6d9169c7 100644 --- a/templates/default/left_main.tpl +++ b/templates/default/left_main.tpl @@ -8,12 +8,8 @@ * $clock - formatted string containing last refresh * $settings - Array containing user perferences needed by this * template. Indexes are as follows: - * $settings['imapConnection'] - IMAP connection handle. Needed to - * allow plugins to read the mailbox. - * $settings['iconThemePath'] - Path to the desired icon theme. If - * the user has disabled icons, this will be NULL. - * $settings['templateDirectory'] - contains the path to the current - * template directory. This may be needed by third + * $settings['templateID'] - contains the ID of the current + * template set. This may be needed by third * party packages that don't integrate easily. * $settings['unreadNotificationEnabled'] - Boolean TRUE if the user * wants to see unread message count on mailboxes @@ -73,15 +69,13 @@ * @author Steve Brown */ -/** include required files */ -include_once(SM_PATH . 'templates/util_global.php'); /* * Recursively parse the mailbox structure to build the navigation tree. * * @since 1.5.2 */ -function buildMailboxTree ($box, $settings, $indent_factor=0) { +function buildMailboxTree ($box, $settings, $icon_theme_path, $indent_factor=0) { // stop condition if (empty($box)) { return ''; @@ -143,25 +137,25 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { * image based on whatever logic they see fit here. */ $folder_icon = ''; - if (!is_null($settings['iconThemePath'])) { + if (!is_null($icon_theme_path)) { switch (true) { case $box['IsInbox']: - $folder_icon = getIcon($settings['iconThemePath'], 'inbox.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'inbox.png', '', $box['MailboxName']); break; case $box['IsSent']: - $folder_icon = getIcon($settings['iconThemePath'], 'senti.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'senti.png', '', $box['MailboxName']); break; case $box['IsTrash']: - $folder_icon = getIcon($settings['iconThemePath'], 'delitem.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'delitem.png', '', $box['MailboxName']); break; case $box['IsDraft']: - $folder_icon = getIcon($settings['iconThemePath'], 'draft.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'draft.png', '', $box['MailboxName']); break; case $box['IsNoInferiors']: - $folder_icon = getIcon($settings['iconThemePath'], 'folder_noinf.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'folder_noinf.png', '', $box['MailboxName']); break; default: - $folder_icon = getIcon($settings['iconThemePath'], 'folder.png', '', $box['MailboxName']); + $folder_icon = getIcon($icon_theme_path, 'folder.png', '', $box['MailboxName']); break; } $folder_icon .= ' '; @@ -188,7 +182,7 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { $end .= ''; // Print unread info - if ($box['MessageCount'] > 0) { + if ($box['MessageCount'] > 0 || count($box['ChildBoxes'])) { if (!empty($unseen_str)) { $end .= ' ('.$unseen_str.')'; } @@ -215,6 +209,11 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { } } + // Add any extra output that may have been added by plugins, etc + // + if (!empty($box['ExtraOutput'])) + $end .= $box['ExtraOutput']; + $span = ''; $spanend = ''; if ($settings['useSpecialFolderColor'] && $box['IsSpecial']) { @@ -225,11 +224,6 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { $spanend = ''; } - // let plugins fiddle with end of line - $end .= concat_hook_function('left_main_after_each_folder', - array(isset($numMessages) ? $numMessages : '', - $box['MailboxFullName'], $settings['imapConnection'])); - $end .= ''; $out = ''; @@ -245,7 +239,7 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { if (!$box['IsCollapsed'] || $box['IsRoot']) { for ($i = 0; $i
- +
@@ -272,9 +266,9 @@ extract($t);

- + - +