Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View helper link_to in Model class

Using Rails 3, is there a way to use link_to helper, or any helper for that matter, inside model?

like image 350
Krule Avatar asked Jan 17 '11 13:01

Krule


1 Answers

There are some reasons that you may need link_to in a model. Yes, @andy, it's a violation of MVC, but that doesn't mean you should get points for not answering the question.

@schwabsauce, it's easier than that. The first line isn't even strictly necessary if you do it in an initializer or something. Same thing works for .sanitize and .raw and a whole load of other awesome functions.

ActionView::Base.send(:include, Rails.application.routes.url_helpers) ActionController::Base.helpers.link_to(whatever) 

If you want to use autopaths you may have to do this inside your link_to:

Rails.application.routes.url_helpers.page_path(@page) 
like image 115
Chuck Vose Avatar answered Sep 21 '22 08:09

Chuck Vose