This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/helpers/admin/assets_helper.rb

11 lines
219 B
Ruby
Raw Normal View History

module Admin::AssetsHelper
2012-05-17 11:40:30 +00:00
def show_all_fields(asset, field)
a = []
@site_valid_locales.each do |locale|
a << asset.send("#{field}_translations")[locale] rescue nil
2012-05-17 11:40:30 +00:00
end
a.join(' - ')
end
end