Class: Effective::Page
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Effective::Page
- Includes:
- PgSearch::Model
- Defined in:
- app/models/effective/page.rb
Instance Attribute Summary collapse
-
#current_user ⇒ Object
Returns the value of attribute current_user.
-
#menu_root_level ⇒ Object
This is for the form.
Instance Method Summary collapse
-
#body ⇒ Object
As per has_many_rich_texts.
-
#duplicate ⇒ Object
Returns a duplicated post object, or throws an exception.
- #duplicate! ⇒ Object
- #menu_child? ⇒ Boolean
- #menu_parent? ⇒ Boolean
- #menu_root? ⇒ Boolean
-
#menu_root_with_children? ⇒ Boolean
When true, this should not appear in sitemap.xml and should return 404 if visited.
- #menu_to_s ⇒ Object
- #published? ⇒ Boolean
- #sidebar ⇒ Object
- #to_s ⇒ Object
Instance Attribute Details
#current_user ⇒ Object
Returns the value of attribute current_user.
11 12 13 |
# File 'app/models/effective/page.rb', line 11 def current_user @current_user end |
#menu_root_level ⇒ Object
This is for the form
176 177 178 |
# File 'app/models/effective/page.rb', line 176 def @menu_root_level end |
Instance Method Details
#body ⇒ Object
As per has_many_rich_texts
140 141 142 |
# File 'app/models/effective/page.rb', line 140 def body rich_text_body end |
#duplicate ⇒ Object
Returns a duplicated post object, or throws an exception
153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'app/models/effective/page.rb', line 153 def duplicate Page.new(attributes.except('id', 'updated_at', 'created_at')).tap do |page| page.title = page.title + ' (Copy)' page.slug = page.slug + '-copy' rich_texts.each do |rt| page.send("rich_text_#{rt.name}=", rt.body) end page.draft = true end end |
#duplicate! ⇒ Object
166 167 168 |
# File 'app/models/effective/page.rb', line 166 def duplicate! duplicate.tap { |page| page.save! } end |
#menu_child? ⇒ Boolean
188 189 190 |
# File 'app/models/effective/page.rb', line 188 def && .present? end |
#menu_parent? ⇒ Boolean
184 185 186 |
# File 'app/models/effective/page.rb', line 184 def && .to_a.present? end |
#menu_root? ⇒ Boolean
180 181 182 |
# File 'app/models/effective/page.rb', line 180 def && .blank? end |
#menu_root_with_children? ⇒ Boolean
When true, this should not appear in sitemap.xml and should return 404 if visited
171 172 173 |
# File 'app/models/effective/page.rb', line 171 def && end |
#menu_to_s ⇒ Object
135 136 137 |
# File 'app/models/effective/page.rb', line 135 def (.presence || title) end |
#published? ⇒ Boolean
148 149 150 |
# File 'app/models/effective/page.rb', line 148 def published? !draft? end |
#sidebar ⇒ Object
144 145 146 |
# File 'app/models/effective/page.rb', line 144 def end |
#to_s ⇒ Object
131 132 133 |
# File 'app/models/effective/page.rb', line 131 def to_s title end |