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\">"


385
386
387
388
389
# File 'lib/kwartz/helper/rails.rb', line 385

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()



394
395
396
397
398
# File 'lib/kwartz/helper/rails.rb', line 394

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