search for: anchor_text

Displaying 1 result from an estimated 1 matches for "anchor_text".

2008 Jul 08
4
Conditional "link_to" helper function - AYUDAME POR FAVOR
Hello, I need to write a function that will return a link only if the current user is the owner. Here is my code... 1. application_helper.rb 2. 3. def link_to_if_owned(owner_id, anchor_text, where_to_go) 4. if current_user.id == owner_id # current user is owner 5. "#{link_to anchor_text, where_to_go}" 6. else 7. anchor 8. end 9. end And here''s how I call it in the view... 1. <%= link_to_if_owned(@car.owner_id, "Add Gas&qu...