Module: RocketCMS::Models::News
Constant Summary
Constants included
from SitemapData
SitemapData::SITEMAP_CHANGEFREQ_ARRAY
Instance Method Summary
collapse
admin
#text_slug, #text_slug=
#text_slug, #text_slug=
Methods included from Seoable
admin, #get_og_title, #page_title, seo_config
Instance Method Details
44
45
46
|
# File 'lib/rocket_cms/models/news.rb', line 44
def format_date
time.strftime('%d.%m.%Y')
end
|
#html5_date ⇒ Object
41
42
43
|
# File 'lib/rocket_cms/models/news.rb', line 41
def html5_date
time.strftime('%Y-%m-%d')
end
|
#report_slug ⇒ Object
32
33
34
35
36
37
38
39
40
|
# File 'lib/rocket_cms/models/news.rb', line 32
def report_slug
if time.blank?
name
elsif name.blank?
time.strftime('%Y-%m-%d')
else
time.strftime('%Y-%m-%d') + '-' + name[0..20]
end
end
|