-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathopensearch.php
More file actions
35 lines (34 loc) · 1.76 KB
/
opensearch.php
File metadata and controls
35 lines (34 loc) · 1.76 KB
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
<?php
/**
* phpGedView: Genealogy Viewer
* Copyright (C) 2009 PGV Development Team. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* @package PhpGedView
* @subpackage search
* @version $Id$
*/
require './config.php';
header('Content-Type: application/opensearchdescription+xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">';
echo '<ShortName>' . get_gedcom_setting(PGV_GED_ID, 'title') . ' ' . $pgv_lang["search"] . '</ShortName>';
echo '<Description>' . get_gedcom_setting(PGV_GED_ID, 'title') . ' ' . $pgv_lang["search"] . '</Description>';
echo '<InputEncoding>UTF-8</InputEncoding>';
echo '<Url type="text/html" template="' . $SERVER_URL. 'search.php?action=general&topsearch=yes&query={searchTerms}"/>';
echo '<Url type="application/x-suggestions+json" template="' . $SERVER_URL. 'autocomplete.php?limit=20&field=NAME&fmt=json&q={searchTerms}"/>';
echo'<Image height="16" width="16" type="image/x-icon">' . $SERVER_URL. $FAVICON . '</Image>';
echo '</OpenSearchDescription>';
?>