22 lines
1 KiB
PHP
22 lines
1 KiB
PHP
![]() |
<?php
|
||
|
/*
|
||
|
****************************************************************************************************
|
||
|
| Copyright (c) 2008 Clip-Bucket.com. All rights reserved. |
|
||
|
| @ Author : Murat Esgin (lavinya http://www.videoizlepaylas.com ) |
|
||
|
| @ Software : Video Media Sitemap for ClipBucket , © PHPBucket.com |
|
||
|
****************************************************************************************************
|
||
|
*/
|
||
|
ob_start();
|
||
|
session_start();
|
||
|
echo '<?xml version="1.0" encoding="utf-8"?>' . "\n";
|
||
|
require 'includes/config.inc.php';
|
||
|
header ("Content-type: text/xml; charset=utf-8");
|
||
|
?>
|
||
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||
|
<ShortName><?=TITLE?></ShortName>
|
||
|
<Description><?=$row['description']?></Description>
|
||
|
<Url type="text/html" method="get" template="<?=BASEURL.search_result?>?query={searchTerms}"/>
|
||
|
<Image width="16" height="16"><?=BASEURL?>/favicon.ico</Image>
|
||
|
<InputEncoding>UTF-8</InputEncoding>
|
||
|
<SearchForm><?=BASEURL?></SearchForm>
|
||
|
</OpenSearchDescription>
|