21 lines
No EOL
922 B
PHP
21 lines
No EOL
922 B
PHP
<?php
|
|
/*
|
|
**********************************************************
|
|
| Copyright (c) 20010 Clip-Bucket.com. All rights reserved.
|
|
| @ Author : Murat Esgin (lavinya http://www.videoizlepaylas.com )
|
|
| @ Software : Video Media Sitemap for ClipBucket , © PHPBucket.com
|
|
**********************************************************
|
|
*/
|
|
require 'includes/config.inc.php';
|
|
'<?xml version="1.0" encoding="utf-8"?>' . "\n";
|
|
|
|
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="<?=cblink(array('name'=>'search_result'))?>?query={searchTerms}"/>
|
|
<Image width="16" height="16"><?=BASEURL?>/favicon.ico</Image>
|
|
<InputEncoding>UTF-8</InputEncoding>
|
|
<SearchForm><?=BASEURL?></SearchForm>
|
|
</OpenSearchDescription>
|