Sha256: 5345f2604afea78fa99ed763f86687c2b32fd018ef9c3601cd221a903089fab1
Contents?: true
Size: 511 Bytes
Versions: 3
Compression:
Stored size: 511 Bytes
Contents
module Gluttonberg # This class is used for create CMS based stylesheets. class Stylesheet < ActiveRecord::Base self.table_name = "gb_stylesheets" include Content::SlugManagement # Included mixins which are registered by host app for extending functionality MixinManager.load_mixins(self) is_versioned :non_versioned_columns => ['position'] is_drag_tree :flat => true , :order => "position" attr_accessible :name, :slug, :css_prefix, :css_postfix, :value, :position end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gluttonberg-core-3.0.2 | app/models/gluttonberg/stylesheet.rb |
gluttonberg-core-3.0.1 | app/models/gluttonberg/stylesheet.rb |
gluttonberg-core-3.0.0 | app/models/gluttonberg/stylesheet.rb |