1) you should not put it into the any controller, controllers have
another purpose, in controller you should only call feeds loading from
some other class.
2) I agree to Daniel, you may put it into the lib/ folder or into app/
models
3) The whether should you have a helper or not for rendering this part
of the view depends on the whether will you call it from the different
places of views (then you definitely should have a helper), or you'll
have only one place in say some main layout where you render it then
there is no need in helper
4) If you want to see feeds within all your pages you should put the
collecting method (load_feeds) into some private/protected method of
ApplicationController and then use it as before_filter in your
controllers (don't forget to turn it off for e.g. destroy method when
you don't need it)
5) you should pass params[:vopo] to your class as some parameter since
it's part of controller
6) If you need just to fetch the feeds once per page I'd put the feeds
loading into some static method, and later call it just like (my_feeds
= Feed.load_feeds), if you need to use them in several places you may
also use Singleton pattern (Wikipedia, the free encyclopedia
Singleton_pattern)