X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Faddrbook_search_html.php;h=ac0be5609901293ef996935f7239efd147327d13;hb=7111b0daa5f74c1c96d3bcf87da7a05e4ba6e189;hp=d64e8b52a932c56206db0342d8b2b7a8abc448d5;hpb=c435f076fe6b5b58e09ae19a8e216f37b069d802;p=squirrelmail.git diff --git a/src/addrbook_search_html.php b/src/addrbook_search_html.php index d64e8b52..ac0be560 100644 --- a/src/addrbook_search_html.php +++ b/src/addrbook_search_html.php @@ -1,41 +1,36 @@ ' . - "\n\n" . - "\n"; - $chk_all = '' . _("All") . ' '._("To").''. + if ($javascript_on) { + print + '\n"; + $chk_all = ''._("All").' '._("To").''. '  '. '' . _("All") . ' '._("Cc").''. '  '. '' . _("All") . ''; + } else { + // check_all links are used only in JavaScript. disable links in js=off environment. + $chk_all = ''; } echo html_tag( 'table', '', 'center', '', 'border="0" width="98%"' ) . html_tag( 'tr', '', '', $color[9] ) . @@ -118,21 +116,7 @@ if ($javascript_on) { } else { $tr_bgcolor = $color[4]; } - if ($squirrelmail_language == 'ja_JP') - { - echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) . - html_tag( 'td', - ' ' . _("To") . ' ' . - ' ' . _("Cc") . ' ' . - ' ' . _("Bcc") . ' ' , - 'center', '', 'width="5%" style="white-space: nowrap;"' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['lastname']) . ' ' . htmlspecialchars($row['firstname']) . ' ', 'left', '', 'style="white-space: nowrap;"' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['email']) . ' ', 'left', '', 'style="white-space: nowrap;"' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['label']) . ' ', 'left', '', 'style="white-space: nowrap;"' ); - } else { + echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) . html_tag( 'td', addCheckBox('send_to_search[T'.$line.']', FALSE, $email). @@ -145,19 +129,20 @@ if ($javascript_on) { html_tag( 'td', ' ' . htmlspecialchars($row['name']) . ' ', 'left', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', ' ' . htmlspecialchars($row['email']) . ' ', 'left', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', ' ' . htmlspecialchars($row['label']) . ' ', 'left', '', 'style="white-space: nowrap;"' ); - } - if ($includesource) { - echo html_tag( 'td', ' ' . $row['source'] . ' ', 'left', '', 'style="white-space: nowrap;"' ); - } - echo "\n"; - $line ++; + if ($includesource) { + echo html_tag( 'td', ' ' . $row['source'] . ' ', 'left', '', 'style="white-space: nowrap;"' ); + } + echo "\n"; + $line ++; } if ($includesource) { $td_colspan = '5'; } else { $td_colspan = '4'; } echo html_tag( 'tr', html_tag( 'td', '' , + _("Use Addresses") . '" /> ' . + '', 'center', '', 'colspan="'. $td_colspan .'"' ) ) . '' . @@ -173,6 +158,11 @@ if ($compose_new_win == '1') { else { displayPageHeader($color, $mailbox); } + +/** set correct value of $default_charset */ +global $default_charset; +set_my_charset(); + /* Initialize addressbook */ $abook = addressbook_init(); @@ -186,16 +176,14 @@ html_tag( 'table', /* Search form */ -echo '
' . +echo '
' . html_tag( 'table', '', 'center', '', 'border="0"' ) . html_tag( 'tr' ) . html_tag( 'td', '', 'left', '', 'style="white-space: nowrap;" valign="middle"' ) . "\n" . addForm($PHP_SELF.'?html_addr_search=true', 'post', 'f'). - "\n
\n" . + "\n
\n" . ' ' . _("Search for") . "\n"; addr_insert_hidden(); -if (! isset($addrquery)) - $addrquery = ''; echo addInput('addrquery', $addrquery, 26); /* List all backends to allow the user to choose where to search */ @@ -220,22 +208,16 @@ if (isset($session)) { echo '' . ' | ' . "\n" . - '
' . "\n"; -addr_insert_hidden(); -echo '
'; + '' . "\n"; +echo ''; do_hook('addrbook_html_search_below'); /* End search form */ -/* Show personal addressbook */ - -if ( !empty( $listall ) ){ - $addrquery = '*'; -} - -if ($addrquery == '' && empty($listall)) { - +/* List addresses. Show personal addressbook */ +if ($addrquery == '' || ! empty($listall)) { + // TODO: recheck all conditions and simplity if statements if (! isset($backend) || $backend != -1 || $addrquery == '') { - if ($addrquery == '') { + if ($addrquery == '' && empty($listall)) { $backend = $abook->localbackend; } @@ -258,46 +240,47 @@ if ($addrquery == '' && empty($listall)) { usort($res,'alistcmp'); addr_display_result($res, true); } + $oTemplate->display('footer.tpl'); exit; -} -else { - +} elseif (!empty($addrquery)) { /* Do the search */ - if (!empty($addrquery)) { - - if ($backend == -1) { - $res = $abook->s_search($addrquery); - } else { - $res = $abook->s_search($addrquery, $backend); - } + if ($backend == -1) { + $res = $abook->s_search($addrquery); + } else { + $res = $abook->s_search($addrquery, $backend); + } - if (!is_array($res)) { - echo html_tag( 'p', '
' . - _("Your search failed with the following error(s)") . - ':
' . $abook->error . "
\n" , - 'center' ) . - "\n\n"; + if (!is_array($res)) { + echo html_tag( 'p', '
' . + _("Your search failed with the following error(s)") . + ':
' . nl2br(htmlspecialchars($abook->error)) . "
\n" , + 'center' ) . "\n"; + $oTemplate->display('footer.tpl'); + } else { + if (sizeof($res) == 0) { + echo html_tag( 'p', '
' . + _("No persons matching your search were found") . "\n" , + 'center' ) . "\n"; + $oTemplate->display('footer.tpl'); } else { - if (sizeof($res) == 0) { - echo html_tag( 'p', '
' . - _("No persons matching your search were found") . "\n" , - 'center' ) . - "\n\n"; - } else { - addr_display_result($res); - } + addr_display_result($res); } } +} else { + // not first time display, not listall and search is empty + // TODO: I think, this part of control structure is never reached. + echo html_tag( 'p', '
' . + _("Nothing to search") . "\n" , + 'center' ); } if ($addrquery == '' || sizeof($res) == 0) { - /* printf('
'."\n", $PHP_SELF); */ - echo '
'. + echo '
'. addForm('compose.php','post','k'); addr_insert_hidden(); echo '' . "\n" . - '
'; + ''; } -?> - \ No newline at end of file +$oTemplate->display('footer.tpl'); +?> \ No newline at end of file