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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
<?php
/**
* $Horde: turba/minisearch.php,v 1.20.4.2 2005/02/02 14:44:05 jan Exp $
*
* Copyright 2000-2005 Charles J. Hagenbuch <chuck@horde.org>
*
* See the enclosed file COPYING for license information (ASL). If you
* did not receive this file, see http://www.horde.org/licenses/asl.php.
*/
@define('TURBA_BASE', dirname(__FILE__));
require_once TURBA_BASE . '/lib/base.php';
$search = Util::getFormData('search');
$results = array();
// Make sure we have a source.
$source = Util::getFormData('source');
if (!isset($source) && isset($cfgSources) && is_array($cfgSources) && count($cfgSources) > 0) {
$source = $prefs->getValue('default_dir');
}
if (!isset($cfgSources[$source])) {
reset($cfgSources);
$source = key($cfgSources);
}
// Do the search if we have one.
if (!is_null($search)) {
$driver = &Turba_Driver::singleton($source, $cfgSources[$source]);
if (!is_a($driver, 'PEAR_Error')) {
$criteria['name'] = trim($search);
$res = $driver->search($criteria);
if (is_a($res, 'Turba_List')) {
while ($ob = $res->next()) {
if ($ob->isGroup()) {
continue;
}
$att = $ob->getAttributes();
foreach ($att as $key => $value) {
if (!empty($attributes[$key]['type']) && $attributes[$key]['type'] == 'email') {
$results[] = array('name' => $att['name'],
'email' => $value,
'source' => $source,
'key' => $att['__key']
);
break;
}
}
}
}
}
}
$bodyClass = 'summary';
require TURBA_TEMPLATES . '/common-header.inc';
?>
<script language="JavaScript" type="text/javascript">
<!--
window.setTimeout('var status = window.parent.document.getElementById(\'turba_minisearch_searching\'); status.style.visibility = \'hidden\'', 10);
window.parent.busyExpanding = false;
//--//-->
</script>
<?php
if (count($results)) {
echo '<table width="100%"><tr><td class="control"><b>' . _("Search Results") . ':</b></td></tr>';
$i = 0;
foreach ($results as $contact) {
$url = 'display.php';
$url = Util::addParameter($url, 'source', $contact['source']);
$url = Util::addParameter($url, 'key', $contact['key']);
$mail_link = $GLOBALS['registry']->call('mail/compose', array(array('to' => addslashes($contact['email']))));
$target = ' target="_parent"';
if (is_a($mail_link, 'PEAR_Error')) {
$mail_link = 'mailto:' . urlencode($contact['email']);
$target = '';
}
echo '<tr><td class="item' . ($i++ % 2) . '">';
echo Horde::link(Horde::applicationUrl($url), _("View Contact"), '', '_parent') . Horde::img('contact.png', _("View Contact")) . '</a> ';
echo '<a href="' . $mail_link . '"' . $target . '>' . htmlspecialchars($contact['name'] . " <" . $contact['email'] . ">") . '</a></td></tr>';
}
echo '</table>';
} elseif (!is_null($search)) {
echo _("No contacts found");
}
?>
</body>
</html>
|