<?php
$feed = new ezcFeed( 'rss2' );
$feed->title = 'Feed title';

$link = $feed->add( 'link' );
$link->href = 'Feed link';

return $feed;
?>
