Class: TokyoMetro::App::Renderer::SideMenu::Problems::Header

Inherits:
Concerns::Header::Content show all
Defined in:
lib/tokyo_metro/app/renderer/side_menu/problems/header.rb

Instance Method Summary collapse

Methods inherited from Concerns::Header::Content

#render

Methods inherited from Concerns::Header::Title

#render

Constructor Details

#initialize(request, icon_size: 2) ⇒ Header

Returns a new instance of Header.



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/tokyo_metro/app/renderer/side_menu/problems/header.rb', line 3

def initialize( request , icon_size: 2 )
  super(
    request ,
    :problems ,
    :problems ,
    "既知の主な問題点" ,
    "Problems and bugs" ,
    icon_size: icon_size ,
    size_changing_button_type: nil ,
    size_changing_button_id: nil ,
    add_update_button: false ,
    update_button_id: nil ,
    additional_content: nil
  )
end