Module: Kwartz::Helper::ActionViewHelper

Defined in:
lib/kwartz/helper/rails.rb

Overview

helper module to add helper methods ‘start_link_tag()’ and ‘start_remote_link_tag()’.

Instance Method Summary collapse

Instance Method Details

return ‘<a href=“…”>’ start tag.

ex.

start_link_tag :action=>'show', :controller=>'user', :id=>1
#=> "<a href=\"/user/show/1\">"


382
383
384
385
386
# File 'lib/kwartz/helper/rails.rb', line 382

def start_link_tag(options={}, html_options=nil, *parameters)
  s = link_to('', options, html_options, *parameters)
  s.sub!(/<\/a>\z/, '')
  s
end

ajax version of start_link_tag()



391
392
393
394
395
# File 'lib/kwartz/helper/rails.rb', line 391

def start_remote_link_tag(options={}, html_options={})
  s = link_to_remote(options, html_options)
  s.sub!(/<\/a>\z/, '')
  s
end