eko / FeedBundle

A Symfony bundle to build RSS feeds from your entities
http://vincent.composieux.fr
MIT License
141 stars 50 forks source link

Add content in an Item, without calling a method in the Entity. #46

Closed ludovicpages closed 9 years ago

ludovicpages commented 9 years ago

Hi. I would like to know if there is any way to add some content in an Item, without calling a method in the Entity. On my code, each entity Article as a "modules" property, which is an Array Collection of differents set of other entities ( in order for the user to be able to build flexible content).

Basically, i would like to add content in an Item, the same way i can add content to the Channel with the following method : $feed->addChannelField(new ChannelField('custom_name', 'custom_value'));

Thanks for reader me.

Ludo

eko commented 9 years ago

Hi @ludovicpages,

Sorry for my response delay.

Of course, it's possible.

Here is the way to achieve this:

$feed->addItemField(new ItemField('custom_name', 'custom_value'));

This way, all of your items will have a custom_name node with a custom_value.

Closing this issue.