aboutsummaryrefslogtreecommitdiff
path: root/www/opensearchdescription.php
blob: 443546ed059e1c51a9f6dc7eca4bb0d019ed6fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
namespace phinde;
/**
 * OpenSearch XML description element
 *
 * @link http://www.opensearch.org/
 */
require 'www-header.php';

header('Content-type: application/opensearchdescription+xml');
render(
    'opensearchdescription',
    array(
        'absBaseUrl' => Helper::fullUrl('/'),
    )
);
?>