Module: BootstrapPager::Helpers::Link

Included in:
FirstPage, LastPage, NextPage, Page, PrevPage
Defined in:
lib/bootstrap_pager/helpers/tags.rb

Overview

Tag that contains a link

Instance Method Summary collapse

Instance Method Details

#pageObject

target page number



38
39
40
# File 'lib/bootstrap_pager/helpers/tags.rb', line 38

def page
  raise 'Override page with the actual page value to be a Page.'
end

#to_s(locals = {}) ⇒ Object

:nodoc:



45
46
47
# File 'lib/bootstrap_pager/helpers/tags.rb', line 45

def to_s(locals = {}) #:nodoc:
  super locals.merge(:url => url)
end

#urlObject

the link’s href



42
43
44
# File 'lib/bootstrap_pager/helpers/tags.rb', line 42

def url
  page_url_for page
end