Class: Alchemy::Ingredients::Audio

Inherits:
Alchemy::Ingredient show all
Defined in:
app/models/alchemy/ingredients/audio.rb

Overview

A audio attachment

Instance Method Summary collapse

Methods inherited from Alchemy::Ingredient

#definition, #deprecated?, #essence, #has_hint?, #has_tinymce?, #has_validations?, normalize_type, #partial_name, #preview_ingredient?, related_object_alias, #settings, #settings_value, #to_partial_path, translated_label_for, #value

Methods included from Hints

#has_hint?, #hint

Instance Method Details

#preview_text(max_length = 30) ⇒ Object

The first 30 characters of the attachments name

Used by the Element#preview_text method.

Parameters:

  • max_length (Integer) (defaults to: 30)

    (30)



24
25
26
# File 'app/models/alchemy/ingredients/audio.rb', line 24

def preview_text(max_length = 30)
  name.to_s[0..max_length - 1]
end