Class: ProjectMenuItem

Inherits:
MenuItem show all
Defined in:
app/models/project_menu_item.rb

Instance Attribute Summary

Attributes inherited from MenuItem

#href

Instance Method Summary collapse

Methods inherited from MenuItem

#to_html

Constructor Details

#initialize(project, href) ⇒ ProjectMenuItem

Returns a new instance of ProjectMenuItem.



3
4
5
6
# File 'app/models/project_menu_item.rb', line 3

def initialize(project, href)
  @project = project
  super(project.name, href)
end

Instance Method Details

#displayObject



8
9
10
# File 'app/models/project_menu_item.rb', line 8

def display
  "<b class=\"bubble #{h @project.color}\"></b> #{h @project.name}".html_safe
end