2014-07-28 12:34:18 +03:00
|
|
|
module ApplicationHelper
|
2015-08-15 04:33:02 +03:00
|
|
|
def locale_collection
|
|
|
|
I18n.available_locales.map do |locale|
|
|
|
|
[t("locales.#{locale}"), locale]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-19 11:44:44 +03:00
|
|
|
def action_buttons(conference, record, actions = [:index, :show, :edit, :destroy])
|
2015-07-14 21:00:02 +03:00
|
|
|
klass = record.class
|
|
|
|
output = ''
|
|
|
|
|
|
|
|
if actions.include? :index
|
2015-07-19 11:44:44 +03:00
|
|
|
output += link_to(icon(:list), [:management, conference, klass], {
|
2015-07-14 21:00:02 +03:00
|
|
|
title: t('actions.index.button', models: klass.model_name.human(count: 2)),
|
|
|
|
class: 'btn btn-info'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
if actions.include? :show
|
2015-07-19 11:44:44 +03:00
|
|
|
output += link_to(icon(:eye), [:management, conference, record], {
|
2015-07-14 21:00:02 +03:00
|
|
|
title: t('actions.view.button', model: klass.model_name.human),
|
|
|
|
class: 'btn btn-info'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
if actions.include? :edit
|
2015-07-19 11:44:44 +03:00
|
|
|
output += link_to(icon(:edit), [:edit, :management, conference, record], {
|
2015-07-14 21:00:02 +03:00
|
|
|
title: t('actions.edit.button', model: klass.model_name.human),
|
|
|
|
class: 'btn btn-primary'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
if actions.include? :destroy
|
2015-07-19 11:44:44 +03:00
|
|
|
output += link_to(icon(:trash), [:management, conference, record], {
|
2015-07-14 21:00:02 +03:00
|
|
|
method: :delete,
|
|
|
|
data: {confirm: t('actions.are_you_sure')},
|
|
|
|
title: t('actions.edit.button', model: klass.model_name.human),
|
|
|
|
class: 'btn btn-danger'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
output.html_safe
|
|
|
|
end
|
2014-07-28 12:34:18 +03:00
|
|
|
end
|