Sha256: d0e58168ecb4f8d04eb5a236cf5c242e42ce6d0ac909bac5945732b3eade3128
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
# View Helpers for Hydra Batch Edit functionality module BatchEditHelper # determines if the given document id is in the batch def item_in_batch?(doc_id) session[:batch_document_ids] && session[:batch_document_ids].include?(doc_id) ? true : false end # Returns true if user has activated batch edit mode in session def batch_edit_state session[:batch_edit_state] ||= 'off' end # Displays the batch edit tools. Put this in your search result page template. We recommend putting it in catalog/_sort_and_per_page.html.erb def batch_edit_tools render :partial=>'/batch_edits/tools' end # Displays the button that users click when they are done selecting items for a batch. Put this in your search result page template. We put it in catalog/index.html def batch_edit_continue render :partial => '/batch_edits/next_page' end # Displays the button to select/deselect items for your batch. Call this in the index partial that's rendered for each search result. # @param [Hash] document the Hash (aka Solr hit) for one Solr document def batch_edit_select(document) render :partial=>'/batch_edits/add_button', :locals=>{:document=>document} end # Displays the check all button to select/deselect items for your batch. Put this in your search result page template. We put it in catalog/index.html def batch_check_all render :partial=>'/batch_edits/check_all' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hydra-batch-edit-0.0.6 | app/helpers/batch_edit_helper.rb |
hydra-batch-edit-0.0.5 | app/helpers/batch_edit_helper.rb |