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
# File 'lib/redmine/themes.rb', line 63

def <=>(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



83
84
85
# File 'lib/redmine/themes.rb', line 83

def favicon
  favicons.first
end

#favicon?Boolean

Returns:

  • (Boolean)


87
88
89
# File 'lib/redmine/themes.rb', line 87

def favicon?
  favicon.present?
end

#favicon_pathObject



103
104
105
# File 'lib/redmine/themes.rb', line 103

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

#faviconsObject



79
80
81
# File 'lib/redmine/themes.rb', line 79

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



95
96
97
# File 'lib/redmine/themes.rb', line 95

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

#imagesObject



71
72
73
# File 'lib/redmine/themes.rb', line 71

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

#javascript_path(source) ⇒ Object



99
100
101
# File 'lib/redmine/themes.rb', line 99

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

#javascriptsObject



75
76
77
# File 'lib/redmine/themes.rb', line 75

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

#stylesheet_path(source) ⇒ Object



91
92
93
# File 'lib/redmine/themes.rb', line 91

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

#stylesheetsObject



67
68
69
# File 'lib/redmine/themes.rb', line 67

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