Module: SeoPages::ApplicationHelper

Defined in:
app/helpers/seo_pages/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#seo_data ⇒ Object



3
4
5
6
7
8
9
10
11
12
# File 'app/helpers/seo_pages/application_helper.rb', line 3

def seo_data
  @seo_default ||= SeoPages::SeoPageDefault.first
  @seo = SeoPages::SeoPage.where(url_identifier: request.fullpath).first || SeoPages::SeoPage.new
  
  @seo.page_title ||= @seo_default.page_title
  @seo.meta_keywords ||= @seo_default.meta_keywords
  @seo.meta_description ||= @seo_default.meta_description
  
  @seo
end