Sha256: 6a6f7e9059f309720cdb3cb98ae534c5fd9daf2b032519a9debd616736932e15
Contents?: true
Size: 695 Bytes
Versions: 39
Compression:
Stored size: 695 Bytes
Contents
# frozen_string_literal: true module Alchemy module Ingredients # A link to a file # # Attach Alchemy::Attachment into this ingredient # class File < Alchemy::Ingredient store_accessor :data, :css_class, :link_text, :title related_object_alias :attachment, class_name: "Alchemy::Attachment" delegate :name, to: :attachment, allow_nil: true # The first 30 characters of the attachments name # # Used by the Element#preview_text method. # # @param [Integer] max_length (30) # def preview_text(max_length = 30) attachment&.name.to_s[0..max_length - 1] end end end end
Version data entries
39 entries across 39 versions & 1 rubygems