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
|
<?php
/**
* $Horde: mnemo/notes/index.php,v 1.1.2.2 2009-01-06 15:25:00 jan Exp $
*
* Copyright 2001-2009 The Horde Project (http://www.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.
*/
require_once dirname(__FILE__) . '/../lib/base.php';
$search = Util::getGet('q');
if (!$search) {
header('HTTP/1.0 204 No Content');
exit;
}
$memos = Mnemo::listMemos($prefs->getValue('sortby'), $prefs->getValue('sortdir'));
$search_pattern = '/^' . preg_quote($search, '/') . '/i';
$search_results = array();
foreach ($memos as $memo_id => $memo) {
if (preg_match($search_pattern, $memo['desc'])) {
$search_results[$memo_id] = $memo;
}
}
if (count($search_results) == 1) {
$note = array_shift($search_results);
header('Location: ' . Horde::applicationUrl(Util::addParameter('view.php', array('memo' => $note['memo_id'], 'memolist' => $note['memolist_id'])), true));
exit;
}
$title = _("Search Results");
$memos = $search_results;
Horde::addScriptFile('tooltip.js', 'horde', true);
Horde::addScriptFile('tables.js', 'horde', true);
Horde::addScriptFile('prototype.js', 'horde', true);
Horde::addScriptFile('QuickFinder.js', 'horde', true);
require MNEMO_TEMPLATES . '/common-header.inc';
require MNEMO_TEMPLATES . '/menu.inc';
require MNEMO_TEMPLATES . '/list/header.inc';
if (count($memos)) {
require_once 'Horde/Prefs/CategoryManager.php';
$cManager = new Prefs_CategoryManager();
$colors = $cManager->colors();
$fgcolors = $cManager->fgColors();
$sortby = $prefs->getValue('sortby');
$sortdir = $prefs->getValue('sortdir');
$showNotepad = $prefs->getValue('show_notepad');
$baseurl = 'list.php';
require MNEMO_TEMPLATES . '/list/memo_headers.inc';
foreach ($memos as $memo_id => $memo) {
$viewurl = Util::addParameter(
'view.php',
array('memo' => $memo['memo_id'],
'memolist' => $memo['memolist_id']));
$memourl = Util::addParameter(
'memo.php', array('memo' => $memo['memo_id'],
'memolist' => $memo['memolist_id']));
$share = &$GLOBALS['mnemo_shares']->getShare($memo['memolist_id']);
$notepad = $memo['memolist_id'];
if (!is_a($share, 'PEAR_Error')) {
$notepad = $share->get('name');
}
require MNEMO_TEMPLATES . '/list/memo_summaries.inc';
}
require MNEMO_TEMPLATES . '/list/memo_footers.inc';
} else {
require MNEMO_TEMPLATES . '/list/empty.inc';
}
require MNEMO_TEMPLATES . '/panel.inc';
require $registry->get('templates', 'horde') . '/common-footer.inc';
|