ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/textual_mixins/textual_scan_history.rb

Summary

Maintainability
A
25 mins
Test Coverage
D
63%
module TextualMixins::TextualScanHistory
  def textual_scan_history
    h = {:label => _("Analysis History"), :icon => "fa fa-search"}
    num = @record.number_of(:scan_histories)
    if num.zero?
      h[:value] = _("None")
    else
      h[:value] = num
      h[:title] = _("Show virtual machine analysis history")
      h[:explorer] = true
      h[:link] = url_for_only_path(:controller => controller.controller_name, :action => 'scan_histories', :id => @record)
    end
    h
  end
end