Class: Pageflow::PublishedEntry
- Inherits:
-
Object
- Object
- Pageflow::PublishedEntry
- Extended by:
- ActiveModel::Naming
- Includes:
- ActiveModel::Conversion
- Defined in:
- app/models/pageflow/published_entry.rb
Instance Attribute Summary collapse
-
#entry ⇒ Object
readonly
Returns the value of attribute entry.
-
#revision ⇒ Object
readonly
Returns the value of attribute revision.
-
#share_target ⇒ Object
Returns the value of attribute share_target.
Class Method Summary collapse
Instance Method Summary collapse
- #cache_key ⇒ Object
- #cache_version ⇒ Object
- #home_button ⇒ Object
-
#initialize(entry, revision = nil) ⇒ PublishedEntry
constructor
A new instance of PublishedEntry.
- #overview_button ⇒ Object
- #resolve_widgets(options = {}) ⇒ Object
- #stylesheet_cache_key ⇒ Object
- #stylesheet_model ⇒ Object
- #thumbnail_file ⇒ Object
- #thumbnail_url(*args) ⇒ Object
- #title ⇒ Object
Constructor Details
#initialize(entry, revision = nil) ⇒ PublishedEntry
Returns a new instance of PublishedEntry.
32 33 34 35 36 |
# File 'app/models/pageflow/published_entry.rb', line 32 def initialize(entry, revision = nil) @entry = entry @revision = revision || entry.published_revision @custom_revision = !!revision end |
Instance Attribute Details
#entry ⇒ Object (readonly)
Returns the value of attribute entry.
6 7 8 |
# File 'app/models/pageflow/published_entry.rb', line 6 def entry @entry end |
#revision ⇒ Object (readonly)
Returns the value of attribute revision.
6 7 8 |
# File 'app/models/pageflow/published_entry.rb', line 6 def revision @revision end |
#share_target ⇒ Object
Returns the value of attribute share_target.
7 8 9 |
# File 'app/models/pageflow/published_entry.rb', line 7 def share_target @share_target end |
Class Method Details
.find(id, scope = Entry) ⇒ Object
60 61 62 |
# File 'app/models/pageflow/published_entry.rb', line 60 def self.find(id, scope = Entry) PublishedEntry.new(scope.published.find(id)) end |
Instance Method Details
#cache_key ⇒ Object
64 65 66 67 68 69 70 71 |
# File 'app/models/pageflow/published_entry.rb', line 64 def cache_key [ self.class.model_name.cache_key, entry.cache_key, revision.cache_key, theming.cache_key ].compact.join('-') end |
#cache_version ⇒ Object
73 74 75 76 77 78 79 |
# File 'app/models/pageflow/published_entry.rb', line 73 def cache_version [ entry.cache_version, revision.cache_version, theming.cache_version ].compact.join('-').presence end |
#home_button ⇒ Object
81 82 83 |
# File 'app/models/pageflow/published_entry.rb', line 81 def HomeButton.new(revision, theming) end |
#overview_button ⇒ Object
85 86 87 |
# File 'app/models/pageflow/published_entry.rb', line 85 def OverviewButton.new(revision) end |
#resolve_widgets(options = {}) ⇒ Object
89 90 91 |
# File 'app/models/pageflow/published_entry.rb', line 89 def ( = {}) .resolve(Pageflow.config_for(entry), ) end |
#stylesheet_cache_key ⇒ Object
46 47 48 |
# File 'app/models/pageflow/published_entry.rb', line 46 def stylesheet_cache_key revision.cache_key_with_version end |
#stylesheet_model ⇒ Object
42 43 44 |
# File 'app/models/pageflow/published_entry.rb', line 42 def stylesheet_model custom_revision? ? revision : entry end |
#thumbnail_file ⇒ Object
54 55 56 57 58 |
# File 'app/models/pageflow/published_entry.rb', line 54 def thumbnail_file share_image_file || pages.first.try(:thumbnail_file) || PositionedFile.null end |
#thumbnail_url(*args) ⇒ Object
50 51 52 |
# File 'app/models/pageflow/published_entry.rb', line 50 def thumbnail_url(*args) thumbnail_file.thumbnail_url(*args) end |
#title ⇒ Object
38 39 40 |
# File 'app/models/pageflow/published_entry.rb', line 38 def title revision.title.presence || entry.title end |