Class: Pulitzer::CreatePostTypeContentElements

Inherits:
Object
  • Object
show all
Defined in:
app/interactions/pulitzer/create_post_type_content_elements.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ptcet) ⇒ CreatePostTypeContentElements

Returns a new instance of CreatePostTypeContentElements.



4
5
6
7
# File 'app/interactions/pulitzer/create_post_type_content_elements.rb', line 4

def initialize(ptcet)
  self.post_type  = ptcet.post_type
  self.ptcet      = ptcet
end

Instance Attribute Details

#old_labelObject

Returns the value of attribute old_label.



2
3
4
# File 'app/interactions/pulitzer/create_post_type_content_elements.rb', line 2

def old_label
  @old_label
end

#post_typeObject

Returns the value of attribute post_type.



2
3
4
# File 'app/interactions/pulitzer/create_post_type_content_elements.rb', line 2

def post_type
  @post_type
end

#ptcetObject

Returns the value of attribute ptcet.



2
3
4
# File 'app/interactions/pulitzer/create_post_type_content_elements.rb', line 2

def ptcet
  @ptcet
end

Instance Method Details

#callObject



9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/interactions/pulitzer/create_post_type_content_elements.rb', line 9

def call
  post_type.posts.each do |post|
    post.preview_version.content_elements.create do |ce|
      ce.label                          = ptcet.label
      ce.height                         = ptcet.height
      ce.width                          = ptcet.width
      ce.text_editor                    = ptcet.text_editor
      ce.content_element_type           = ptcet.content_element_type
      ce.post_type_content_element_type = ptcet
    end
  end
end