Flowdock
method

build_year_options

Importance_1
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActionView::Helpers
build_year_options(selected, options = {}) private

Build select option HTML for year. If year_format option is not passed

build_year_options(1998, start: 1998, end: 2000)
=> "<option value="1998" selected="selected">1998</option>
    <option value="1999">1999</option>
    <option value="2000">2000</option>"

If year_format option is passed

build_year_options(1998, start: 1998, end: 2000, year_format: ->year { "Heisei #{ year - 1988 }" })
=> "<option value="1998" selected="selected">Heisei 10</option>
    <option value="1999">Heisei 11</option>
    <option value="2000">Heisei 12</option>"
Show source
Register or log in to add new notes.