module AdministrateBatchActions::Helpers

Public Instance Methods

administrate_batch_actions_button(name, path, html_options = {class: 'button'}) click to toggle source
# File lib/administrate_batch_actions/helpers.rb, line 3
def administrate_batch_actions_button(name, path, html_options = {class: 'button'})
  render partial: 'shared/administrate_batch_actions/button',
        locals: { name: name, path: path, html_options: html_options }
end
administrate_batch_actions_checkbox(value) click to toggle source
# File lib/administrate_batch_actions/helpers.rb, line 12
def administrate_batch_actions_checkbox(value)
  render partial: 'shared/administrate_batch_actions/checkbox',
        locals: { value: value }
end
administrate_batch_actions_select_all() click to toggle source
# File lib/administrate_batch_actions/helpers.rb, line 8
def administrate_batch_actions_select_all
  render partial: 'shared/administrate_batch_actions/select_all'
end