feed.php
<?='<?xml version="1.0" encoding="utf-8"?>'?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Drarok.com</title>
<subtitle>Filedump!</subtitle>
<link rel="alternate" type="text/html" href="http://drarok.com/" />
<link rel="self" type="application/atom+xml" href="http://drarok.com/feed" />
<id>http://drarok.com/feed</id>
<updated>
<?=date(DATE_ATOM
, strtotime($files->current()->created))?></updated>
<rights>Copyright ©
<?=date('Y')?>, Drarok Ithaqua</rights>
<?php foreach ($files as $file): ?>
<entry>
<title><?=$file->name?></title>
<link rel="alternate" type="application/octet-stream" href="http://drarok.com/files/<?=$file->name?>" />
<id>
<?=md5($file->name)?></id>
<updated>
<?=date(DATE_ATOM
, strtotime(is_null($file->modified) ?
$file->created : $file->modified))?></updated>
<summary><?=$file->description?></summary>
</entry>
<?php endforeach; ?>
</feed>