Sha256: b029c4a60da3c61548a1234f5ced99b6401a73b42207da048338cc24458b7436
Contents?: true
Size: 394 Bytes
Versions: 9
Compression:
Stored size: 394 Bytes
Contents
class CmsTag::PageInteger < CmsBlock include CmsTag def self.regex_tag_signature(label = nil) label ||= /\w+/ /<\s*cms:page:(#{label}):integer\s*\/?>/ end def regex_tag_signature self.class.regex_tag_signature(label) end def content=(value) write_attribute(:content_integer, value) end def content read_attribute(:content_integer) end end
Version data entries
9 entries across 9 versions & 1 rubygems