Class: Redmine::Themes::Theme

Inherits:
Object
  • Object
show all
Defined in:
lib/redmine/themes.rb

Overview

Class used to represent a theme

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ Theme

Returns a new instance of Theme.



48
49
50
51
52
53
54
# File 'lib/redmine/themes.rb', line 48

def initialize(path)
  @path = path
  @dir = File.basename(path)
  @name = @dir.humanize
  @stylesheets = nil
  @javascripts = nil
end

Instance Attribute Details

#dirObject (readonly)

Returns the value of attribute dir.



46
47
48
# File 'lib/redmine/themes.rb', line 46

def dir
  @dir
end

#nameObject (readonly)

Returns the value of attribute name.



46
47
48
# File 'lib/redmine/themes.rb', line 46

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



46
47
48
# File 'lib/redmine/themes.rb', line 46

def path
  @path
end

Instance Method Details

#<=>(theme) ⇒ Object



63
64
65
66
67
# File 'lib/redmine/themes.rb', line 63

def <=>(theme)
  return nil unless theme.is_a?(Theme)

  name <=> theme.name
end

#==(theme) ⇒ Object



59
60
61
# File 'lib/redmine/themes.rb', line 59

def ==(theme)
  theme.is_a?(Theme) && theme.dir == dir
end

#faviconObject



85
86
87
# File 'lib/redmine/themes.rb', line 85

def favicon
  favicons.first
end

#favicon?Boolean

Returns:

  • (Boolean)


89
90
91
# File 'lib/redmine/themes.rb', line 89

def favicon?
  favicon.present?
end

#favicon_pathObject



105
106
107
# File 'lib/redmine/themes.rb', line 105

def favicon_path
  "/themes/#{dir}/favicon/#{favicon}"
end

#faviconsObject



81
82
83
# File 'lib/redmine/themes.rb', line 81

def favicons
  @favicons ||= assets("favicon")
end

#idObject

Directory name used as the theme id



57
# File 'lib/redmine/themes.rb', line 57

def id; dir end

#image_path(source) ⇒ Object



97
98
99
# File 'lib/redmine/themes.rb', line 97

def image_path(source)
  "/themes/#{dir}/images/#{source}"
end

#imagesObject



73
74
75
# File 'lib/redmine/themes.rb', line 73

def images
  @images ||= assets("images")
end

#javascript_path(source) ⇒ Object



101
102
103
# File 'lib/redmine/themes.rb', line 101

def javascript_path(source)
  "/themes/#{dir}/javascripts/#{source}"
end

#javascriptsObject



77
78
79
# File 'lib/redmine/themes.rb', line 77

def javascripts
  @javascripts ||= assets("javascripts", "js")
end

#stylesheet_path(source) ⇒ Object



93
94
95
# File 'lib/redmine/themes.rb', line 93

def stylesheet_path(source)
  "/themes/#{dir}/stylesheets/#{source}"
end

#stylesheetsObject



69
70
71
# File 'lib/redmine/themes.rb', line 69

def stylesheets
  @stylesheets ||= assets("stylesheets", "css")
end