Method: FlyAdmin::Imbs::ApplicationHelper#item_link
- Defined in:
- app/helpers/fly_admin/imbs/application_helper.rb
#item_link(*args) ⇒ Object
If anonymous - link to landing page If customer/admin/etc - link to item page (video#show, article#show etc)
6 7 8 9 10 11 12 13 |
# File 'app/helpers/fly_admin/imbs/application_helper.rb', line 6 def item_link(*args) case FlyAdmin.paysite_type when "serials" serials_item_link(*args) when "news" news_item_link(*args) end end |