<?php
$feed = new ezcFeed( 'rss2' );

$feed->title = 'Feed title';

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

$feed->description = 'Feed description';

$textInput = $feed->add( 'textInput' );
$textInput->title = 'TextInput title';
$textInput->description = 'TextInput description';
$textInput->name = 'TextInput name';
$textInput->link = 'TextInput link';

return $feed;
?>
