Module: RocketCMS::Models::News
Instance Method Summary
collapse
#text_slug, #text_slug=
#text_slug, #text_slug=
Methods included from Seoable
admin, #get_og_title, #page_title, seo_config
Instance Method Details
42
43
44
|
# File 'lib/rocket_cms/models/news.rb', line 42
def format_date
time.strftime('%d.%m.%Y')
end
|
#html5_date ⇒ Object
39
40
41
|
# File 'lib/rocket_cms/models/news.rb', line 39
def html5_date
time.strftime('%Y-%m-%d')
end
|
#report_slug ⇒ Object
30
31
32
33
34
35
36
37
38
|
# File 'lib/rocket_cms/models/news.rb', line 30
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
|