A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

application_helper.rb 289 B

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
123456789101112131415
  1. require 'calefaction/version'
  2. module ApplicationHelper
  3. def get_title(title = '')
  4. base = '[Site Name]'
  5. title.empty? ? base : "#{title} : #{base}"
  6. end
  7. def get_copyright_year
  8. start = 2015
  9. year = Time.now.year
  10. year > start ? "#{start}–#{year}" : start
  11. end
  12. end