Sha256: 850d79853dee21996a286b45e8d8970d7b753bde263734e5cb7dec65aa78c223
Contents?: true
Size: 593 Bytes
Versions: 50
Compression:
Stored size: 593 Bytes
Contents
module Bhf module ViewHelpers module ActionView def bhf_edit(object, options = {}) # TODO: add a block of html for custom editing buttons and links return unless session[Bhf::Engine.config.session_auth_name.to_s] == true options[:platform_name] ||= object.class.to_s.pluralize.downcase if object.respond_to?(:'bhf_can_edit?', true) return unless object.bhf_can_edit?(options) end render partial: 'bhf/helper/frontend_edit', locals: { platform_name: options[:platform_name], object: object } end end end end
Version data entries
50 entries across 50 versions & 1 rubygems