module Bhf::Mongoid::Document

Public Instance Methods

to_bhf_s() click to toggle source
# File lib/bhf/mongoid/document.rb, line 38
def to_bhf_s
  return title if self.respond_to? :title
  return name if self.respond_to? :name

  if self.respond_to?(:attributes)
    return title if attributes['title']
    return name if attributes['name']
    klass_name = if self.class.respond_to?(:model_name)
      self.class.model_name.human
    else
      self.class.to_s.humanize
    end
    return "#{klass_name} ID: #{send(self.class.bhf_primary_key)}" if attributes[self.class.bhf_primary_key]
  end

  self.to_s.humanize
end