Sha256: 176d27ac5d0bb281975ca9df17f13e72155af0e55b03cf91be18d0e8970a44ab
Contents?: true
Size: 397 Bytes
Versions: 16
Compression:
Stored size: 397 Bytes
Contents
# represents a link to a page for the page_list sidebar or next page links module Fe class PageLink attr_accessor :dom_id, :load_path, :page attr_accessor :save_path # to save current page def initialize(load_path, dom_id, page) @load_path = load_path @dom_id = dom_id @page = page end def label(locale = nil) page.label(locale) end end end
Version data entries
16 entries across 16 versions & 1 rubygems