module RocketCMS::Models::News

Public Instance Methods

format_date() click to toggle source
# File lib/rocket_cms/models/news.rb, line 50
def format_date
  time.strftime('%d.%m.%Y')
end
html5_date() click to toggle source
# File lib/rocket_cms/models/news.rb, line 47
def html5_date
  time.strftime('%Y-%m-%d')
end
report_slug() click to toggle source
# File lib/rocket_cms/models/news.rb, line 38
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