Module: NavLinkHelper

Defined in:
app/helpers/nav_link_helper.rb

Defined Under Namespace

Classes: LinkGenerator

Instance Method Summary collapse

Instance Method Details



3
4
5
6
7
8
9
10
# File 'app/helpers/nav_link_helper.rb', line 3

def nav_link_to(*args, &block)
  title = block_given? ? capture(&block) : args.shift
  url_options  = args[0]
  html_options = args[1] || {}
  options      = args[2] || {}

  LinkGenerator.new(request, title, url_options, controller,html_options, options).to_html
end