Sha256: b0882f6473b18cdd4407026b54c3dcbde3d30f64196409e47319f4ea661dcdc6
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
# Methods added to this helper will be available to all templates in the application. require 'localization' module ApplicationHelper include Localization def image_button_to(image_source, title, options) html = '' html += image_submit_tag image_source, :class => 'image-submit', :alt => title, :title => title, :id => "#{title}_#{options[:id]}", :name => title, :onclick => "form.action='#{url_for(options)}'" end def detour_to(title, options) link_to title, options.update({:return_controller => @controller.controller_name, :return_action => @controller.action_name, :return_id => params[:id]}) end def image_detour_to(image_source, title, image_options, options ) image_options ||= {:class => 'image-submit'} image_options.update :alt => title, :title => title detour_to image_tag(image_source, image_options), options end def back_or_link_to(title, options) if session[:detours] options = session[:detours].last.update({:return_from_detour => true}) puts "linked detour: #{options}" end link_to title, options end def t(time_as_float) "#{time_as_float.to_i}:#{'%02d' % (time_as_float.frac * 60).to_i}" end def h(object) if object.is_a? Time object.strftime '%Y-%m-%d %H:%M:%S' else super object end end end
Version data entries
4 entries across 4 versions & 1 rubygems