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.
 
 
 
 
 

20 lignes
374 B

  1. require 'calefaction/version'
  2. module ApplicationHelper
  3. def get_title(title = '')
  4. base = AdminSetting.get('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. def get_copyright_holders
  13. AdminSetting.get('copyright')
  14. end
  15. end