Class: Pageflow::DraftEntry
- Inherits:
-
Object
- Object
- Pageflow::DraftEntry
- Includes:
- ActiveModel::Conversion
- Defined in:
- app/models/pageflow/draft_entry.rb
Instance Attribute Summary collapse
-
#draft ⇒ Object
readonly
Returns the value of attribute draft.
-
#entry ⇒ Object
readonly
Returns the value of attribute entry.
Class Method Summary collapse
Instance Method Summary collapse
- #add_file(file) ⇒ Object
- #create_file(model, attributes) ⇒ Object
- #home_button ⇒ Object
-
#initialize(entry, draft = nil) ⇒ DraftEntry
constructor
A new instance of DraftEntry.
- #remove_file(file) ⇒ Object
- #save! ⇒ Object
- #stylesheet_cache_key ⇒ Object
- #stylesheet_model ⇒ Object
- #update_meta_data!(attributes) ⇒ Object
Constructor Details
#initialize(entry, draft = nil) ⇒ DraftEntry
22 23 24 25 |
# File 'app/models/pageflow/draft_entry.rb', line 22 def initialize(entry, draft = nil) @entry = entry @draft = draft || entry.draft end |
Instance Attribute Details
#draft ⇒ Object (readonly)
Returns the value of attribute draft
5 6 7 |
# File 'app/models/pageflow/draft_entry.rb', line 5 def draft @draft end |
#entry ⇒ Object (readonly)
Returns the value of attribute entry
5 6 7 |
# File 'app/models/pageflow/draft_entry.rb', line 5 def entry @entry end |
Class Method Details
.accessible_by(ability, action) ⇒ Object
63 64 65 66 67 |
# File 'app/models/pageflow/draft_entry.rb', line 63 def self.accessible_by(ability, action) Entry.accessible_by(ability, action).map do |entry| DraftEntry.new(entry) end end |
.find(id) ⇒ Object
55 56 57 |
# File 'app/models/pageflow/draft_entry.rb', line 55 def self.find(id) new(Entry.find(id)) end |
.for_file_usage(usage) ⇒ Object
59 60 61 |
# File 'app/models/pageflow/draft_entry.rb', line 59 def self.for_file_usage(usage) new(usage.revision.entry) end |
Instance Method Details
#add_file(file) ⇒ Object
43 44 45 |
# File 'app/models/pageflow/draft_entry.rb', line 43 def add_file(file) draft.file_usages.create!(:file => file) end |
#create_file(model, attributes) ⇒ Object
27 28 29 30 31 32 33 34 35 36 |
# File 'app/models/pageflow/draft_entry.rb', line 27 def create_file(model, attributes) file = model.create(attributes) do |f| f.entry = entry end usage = @draft.file_usages.create(:file => file) file.usage_id = usage.id file end |
#home_button ⇒ Object
77 78 79 |
# File 'app/models/pageflow/draft_entry.rb', line 77 def HomeButton.new(draft, theming) end |
#remove_file(file) ⇒ Object
38 39 40 41 |
# File 'app/models/pageflow/draft_entry.rb', line 38 def remove_file(file) draft.file_usages.where(file: file).destroy_all file.destroy if file.usages.empty? end |
#save! ⇒ Object
47 48 49 |
# File 'app/models/pageflow/draft_entry.rb', line 47 def save! draft.save! end |
#stylesheet_cache_key ⇒ Object
73 74 75 |
# File 'app/models/pageflow/draft_entry.rb', line 73 def stylesheet_cache_key draft.cache_key end |
#stylesheet_model ⇒ Object
69 70 71 |
# File 'app/models/pageflow/draft_entry.rb', line 69 def stylesheet_model draft end |
#update_meta_data!(attributes) ⇒ Object
51 52 53 |
# File 'app/models/pageflow/draft_entry.rb', line 51 def (attributes) draft.update_attributes!(attributes) end |