Parent

Included Modules

Class/Module Index [+]

Quicksearch

Ramaze::Helper::Paginate::Paginator

Provides easy pagination and navigation

Attributes

css[R]

Public Class Methods

new(data = [], page = 1, limit = 10, var = 'pager', opts = {}) click to toggle source
# File lib/ramaze/helper/paginate.rb, line 116
def initialize(data = [], page = 1, limit = 10, var = 'pager', opts = {})
  @data, @page, @limit, @var = data, page, limit, var
  @css = Paginate.trait[:paginate][:css].dup
  @css.merge!(opts[:css]) if opts[:css]
  @pager = pager_for(data)
  @page = @page > page_count ? page_count : @page
  @pager = pager_for(data)
end

Public Instance Methods

count() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 207
def count       ; @pager.count       ; end
current_page() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 202
def current_page; @pager.current_page; end
each(&block) click to toggle source
# File lib/ramaze/helper/paginate.rb, line 199
def each(&block); @pager.each(&block); end
empty?() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 206
def empty?      ; @pager.empty?      ; end
first_page?() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 200
def first_page? ; @pager.first_page? ; end
last_page() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 203
def last_page   ; @pager.last_page   ; end
last_page?() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 204
def last_page?  ; @pager.last_page?  ; end
needed?() click to toggle source

Useful to omit pager if it’s of no use.

# File lib/ramaze/helper/paginate.rb, line 192
def needed?
  @pager.page_count > 1
end
next_page() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 205
def next_page   ; @pager.next_page   ; end
page_count() click to toggle source

these methods are actually on the pager, but we def them here for convenience (method_missing in helper is evil and even slower)

# File lib/ramaze/helper/paginate.rb, line 198
def page_count  ; @pager.page_count  ; end
prev_page() click to toggle source
# File lib/ramaze/helper/paginate.rb, line 201
def prev_page   ; @pager.prev_page   ; end

[Validate]

Generated with the Darkfish Rdoc Generator 2.