Method: Scrivito::AttributeContent::ClassMethods#description_for_editor

Defined in:
app/cms/scrivito/attribute_content.rb

#description_for_editorString

Short description of a CMS object or widget type for the UI.

The description is displayed when adding new pages or widgets, for example. As a general rule, it is used whenever no widget or object instance is available. If there is, the BasicObj#description_for_editor and, respectively, BasicWidget#description_for_editor instance methods are used instead.

This method can be overridden to customize the description displayed to editors.

Returns:

  • (String)

    short description of a CMS object or widget type for the UI


594
595
596
# File 'app/cms/scrivito/attribute_content.rb', line 594

def description_for_editor
  name.titleize
end