method

build_year_options

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>"