Class: Effective::Page

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
PgSearch::Model
Defined in:
app/models/effective/page.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#current_userObject

Returns the value of attribute current_user.



11
12
13
# File 'app/models/effective/page.rb', line 11

def current_user
  @current_user
end

This is for the form



185
186
187
# File 'app/models/effective/page.rb', line 185

def menu_root_level
  @menu_root_level
end

Instance Method Details

#bodyObject

As per has_many_rich_texts



149
150
151
# File 'app/models/effective/page.rb', line 149

def body
  rich_text_body
end

#duplicateObject

Returns a duplicated post object, or throws an exception



162
163
164
165
166
167
168
169
170
171
172
173
# File 'app/models/effective/page.rb', line 162

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



175
176
177
# File 'app/models/effective/page.rb', line 175

def duplicate!
  duplicate.tap { |page| page.save! }
end

Returns:

  • (Boolean)


197
198
199
# File 'app/models/effective/page.rb', line 197

def menu_child?
  menu? && menu_parent_id.present?
end

Returns:

  • (Boolean)


205
206
207
# File 'app/models/effective/page.rb', line 205

def menu_children_blank?
  menu_children_count <= 0
end

Returns:

  • (Boolean)


201
202
203
# File 'app/models/effective/page.rb', line 201

def menu_children_present?
  menu_children_count > 0
end

Returns:

  • (Boolean)


193
194
195
# File 'app/models/effective/page.rb', line 193

def menu_parent?
  menu? && menu_children_present?
end

Returns:

  • (Boolean)


189
190
191
# File 'app/models/effective/page.rb', line 189

def menu_root?
  menu? && menu_parent_id.blank?
end

When true, this should not appear in sitemap.xml and should return 404 if visited

Returns:

  • (Boolean)


180
181
182
# File 'app/models/effective/page.rb', line 180

def menu_root_with_children?
  menu_root? && menu_parent?
end


144
145
146
# File 'app/models/effective/page.rb', line 144

def menu_to_s
  (menu_title.presence || title)
end

#published?Boolean

Returns:

  • (Boolean)


157
158
159
# File 'app/models/effective/page.rb', line 157

def published?
  !draft?
end


153
154
155
# File 'app/models/effective/page.rb', line 153

def sidebar
  rich_text_sidebar
end

#to_sObject



140
141
142
# File 'app/models/effective/page.rb', line 140

def to_s
  title
end