File: search.php

package info (click to toggle)
nag 1.1-3.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,196 kB
  • ctags: 288
  • sloc: php: 1,260; sh: 657; makefile: 95; xml: 34; perl: 20; sql: 14
file content (22 lines) | stat: -rw-r--r-- 681 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * $Horde: nag/search.php,v 1.5.2.2 2002/12/17 04:43:34 jon Exp $
 *
 * Copyright 2001 Jon Parise <jon@horde.org>
 *
 * See the enclosed file COPYING for license information (GPL).  If you
 * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
 */

define('NAG_BASE', dirname(__FILE__));
require_once NAG_BASE . '/lib/base.php';

$title = _("Search");
$js_onLoad = null;
require NAG_TEMPLATES . '/common-header.inc';
require NAG_BASE . '/menu.php';
$notification->notify();
require NAG_TEMPLATES . '/search/begin.inc';
require NAG_TEMPLATES . '/search/search.inc';
require NAG_TEMPLATES . '/search/end.inc';
require NAG_TEMPLATES . '/common-footer.inc';