engine/app/helpers/locomotive/installation_helper.rb

9 lines
253 B
Ruby

module Locomotive
module InstallationHelper
def next_installation_step_link(step = 1, label = nil)
link_to(content_tag(:span, label || t('admin.installation.common.next')), installation_step_url(step), :class => 'button')
end
end
end