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
|
<?php
/**
* $Horde: turba/minisearch.php,v 1.20.4.8 2006/05/16 07:42:45 jan Exp $
*
* Copyright 2000-2006 Charles J. Hagenbuch <chuck@horde.org>
*
* See the enclosed file LICENSE 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', Turba::getDefaultAddressBook());
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);
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 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 '<ul style="margin-top:4px">';
foreach ($results as $contact) {
$url = Util::addParameter('display.php', array('source' => $contact['source'],
'key' => $contact['key']));
$mail_link = $GLOBALS['registry']->call('mail/compose', array(array('to' => addslashes($contact['email']))));
$target = strpos($mail_link, 'javascript:') === 0 ? '' : ' target="_parent"';
if (is_a($mail_link, 'PEAR_Error')) {
$mail_link = 'mailto:' . urlencode($contact['email']);
$target = '';
}
echo '<li class="linedRow">' .
Horde::link(Horde::applicationUrl($url), _("View Contact"), '', '_parent') . Horde::img('contact.png', _("View Contact")) . '</a> ' .
'<a href="' . $mail_link . '"' . $target . '>' . htmlspecialchars($contact['name'] . ' <' . $contact['email'] . '>') . '</a></li>';
}
echo '</ul>';
} elseif (!is_null($search)) {
echo _("No contacts found");
}
?>
</body>
</html>
|