Sha256: 9e2397d2b1a04f6cec4b09a26b721d0fda63a94e83f61546d1b9ccbbd59286e7
Contents?: true
Size: 425 Bytes
Versions: 9
Compression:
Stored size: 425 Bytes
Contents
class CmsTag::FieldInteger < CmsBlock include CmsTag def self.regex_tag_signature(label = nil) label ||= /\w+/ /<\s*cms:field:(#{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 def render '' end end
Version data entries
9 entries across 9 versions & 1 rubygems