X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Faddrbook_search.php;h=2f6dec569e9e5fd91183c9a1845f7e717865f260;hp=4cfca0968c951cf6e4c36e60f63698c90a1fbaee;hb=d8e94f0ae6733ca565035a93704d71de69b9f2e3;hpb=82d304a0501324b276cabab1870755d5352bd21c diff --git a/src/addrbook_search.php b/src/addrbook_search.php index 4cfca096..2f6dec56 100644 --- a/src/addrbook_search.php +++ b/src/addrbook_search.php @@ -1,111 +1,31 @@ - -\n"; + $oTemplate->assign('compose_addr_pop', true); + $oTemplate->assign('include_abook_name', $includesource); + $oTemplate->assign('addresses', formatAddressList($res)); - while (list($undef, $row) = each($res)) { - $tr_bgcolor = ''; - $email = htmlspecialchars(addcslashes(AddressBook::full_address($row), "'"), ENT_QUOTES); - if ($line % 2) { $tr_bgcolor = $color[0]; } - echo html_tag( 'tr', '', '', $tr_bgcolor, 'nowrap' ) . - html_tag( 'td', - 'To | " . - 'Cc | " . - 'Bcc", - 'center', '', 'valign="top" width="5%" nowrap' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['name']), 'left', '', 'valign="top" nowrap' ) . - html_tag( 'td', ' ' . - '" . htmlspecialchars($row['email']) . '' - , 'left', '', 'valign="top"' ) . - html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" nowrap' ); - if ($includesource) { - echo html_tag( 'td', ' ' . $row['source'], 'left', '', 'valign="top" nowrap' ); - } - - echo "\n"; - $line++; - } - echo ''; + $oTemplate->display('addrbook_search_list.tpl'); } /* ================= End of functions ================= */ - -require_once('../functions/strings.php'); -require_once('../functions/addressbook.php'); - -displayHtmlHeader(); - -/* Initialize vars */ -if (!isset($query)) { $query = ''; } -if (!isset($show)) { $show = ''; } -if (!isset($backend)) { $backend = ''; } -/* Choose correct colors for top and bottom frame */ -if ($show == 'form' && !isset($listall)) { - echo ''; -} else { - echo '\n"; +/** lets get the global vars we may need */ + +if (! sqgetGlobalVar('show' , $show)) { + $show = ''; +} +if (! sqgetGlobalVar('query', $query, SQ_POST)) { + $query = ''; +} +if (! sqgetGlobalVar('listall', $listall, SQ_POST)) { + unset($listall); } +if (! sqgetGlobalVar('backend', $backend, SQ_POST)) { + $backend = ''; +} + +displayHtmlHeader(); +echo "\n"; + +/** set correct value of $default_charset */ +set_my_charset(); /* Empty search */ -if (empty($query) && empty($show) && empty($listall)) { - echo html_tag( 'p', '
' . - _("No persons matching your search was found"), - 'center' ) . - "\n\n", - exit; +if (empty($query) && empty($show) && !isset($listall)) { + $oTemplate->assign('note', htmlspecialchars(_("No persons matching your search were found"))); + $oTemplate->display('note.tpl'); +# exit; } -/* Initialize addressbook */ -$abook = addressbook_init(); +/* Initialize addressbook, show init errors only in bottom frame */ +$showerr=($show=='form' ? false : true); +$abook = addressbook_init($showerr); -/* Create search form */ -if ($show == 'form' && empty($listall)) { - echo '
' . "\n" . - html_tag( 'table', '', '', '', 'border="0" width="100%" height="100%"' ) . - html_tag( 'tr' ) . - html_tag( 'td', ' ' . _("Search for") . "\n", 'left', '', 'nowrap valign="middle" width="10%"' ) . - html_tag( 'td', '', 'left', '', '' ) . - '\n"; - - /* List all backends to allow the user to choose where to search */ - if ($abook->numbackends > 1) { - echo '' . _("in") . ' \n"; - } else { - echo '' . "\n"; - } - - echo '' . - html_tag( 'tr', - html_tag( 'td', '', 'left' ) . - html_tag( 'td', - '' . - ' | ' . "\n" . - ' | ' . "\n" , - 'left' ) - ) . - '
' . "\n"; +/* Create search form (top frame) */ +if ($show == 'form' && ! isset($listall)) { + echo "
\n"; + + $oTemplate->assign('compose_addr_pop', true); + $oTemplate->assign('backends', getBackends()); + $oTemplate->display('addressbook_search_form.tpl'); + + echo "
\n"; } else { - - /* Show personal addressbook */ - if ($show == 'blank' && empty($listall)) { + /** + * List addresses (bottom frame) + * If listall is set, list all entries in selected backend. + * If $show is 'blank' (initial call of address book popup) - list + * personal address book. + */ + if ($show == 'blank' || isset($listall)) { if($backend != -1 || $show == 'blank') { if ($show == 'blank') { @@ -249,10 +107,7 @@ if ($show == 'form' && empty($listall)) { usort($res,'alistcmp'); display_result($res, false); } else { - echo html_tag( 'p', '' . - sprintf(_("Unable to list addresses from %s"), - $abook->backends[$backend]->sname) . '' , - 'center' ) . "\n"; + plain_error_message(sprintf(_("Unable to list addresses from %s"), $abook->backends[$backend]->sname)); } } else { $res = $abook->list_addr(); @@ -260,43 +115,30 @@ if ($show == 'form' && empty($listall)) { display_result($res, true); } - } else { - if( !empty( $listall ) ){ - $query = '*'; + } elseif (!empty($query)) { + /* Do the search (listall is not set. query is set.)*/ + + if($backend == -1) { + $res = $abook->s_search($query); + } else { + $res = $abook->s_search($query, $backend); } - /* Do the search */ - if (!empty($query)) { - - if($backend == -1) { - $res = $abook->s_search($query); - } else { - $res = $abook->s_search($query, $backend); - } - - if (!is_array($res)) { - echo html_tag( 'p', '
' . - _("Your search failed with the following error(s)") . - ':
' . $abook->error . "
\n" , - 'center' ) . - "\n\n"; - exit; - } - - if (sizeof($res) == 0) { - echo html_tag( 'p', '
' . - _("No persons matching your search was found") . "\n" , - 'center' ) . - "\n\n"; - exit; - } - + if (!is_array($res)) { + plain_error_message( _("Your search failed with the following error(s)") .':
'. nl2br(htmlspecialchars($abook->error)) ); + } elseif (sizeof($res) == 0) { + $oTemplate->assign('note', _("No persons matching your search were found")); + $oTemplate->display('note.tpl'); + } else { display_result($res); } + } else { + /** + * listall is not set, query is not set or empty. + * User hit search button without entering search expression. + */ + plain_error_message(_("Nothing to search")); } - } -echo "\n"; - -?> +$oTemplate->display('footer.tpl');