Skip to content
Snippets Groups Projects
Forked from Digital Experience Group / UNL_Search
247 commits behind the upstream repository.
index.php 206 B
<?php

if (!isset($_GET['u'])) {
    exit();
}

require_once dirname(__FILE__).'/../../config.sample.php';

header('Content-type:application/xml');
echo UNL_Search_CSEGenerator::generateCSE($_GET['u']);

?>