Obj

Obj

The base class of CMS objects.

A CMS object is a collection of attributes and their values, as defined by its object class. For custom attributes, various attribute types are available.

System attributes

Obj provides the following system attributes to all CMS objects:

Attribute nameGetterPurposeRead only
_idid()Unique identifier of a CMS object. Can be specified only on object creation. Use id when searching.
_contentIdcontentId()[New in 1.22.0]In a multi-site environment, the key that connects individual pages on two or more sites as language versions of each other. Used by the versionOnSite and versionsOnAllSites instance methods.
_createdAtcreatedAt()Date of the object’s creation.
_firstPublishedAtfirstPublishedAt()Date on which the object was first published.
_languagelanguage()
[New in 1.22.0]Language of the CMS object. The language code must be in accordance with ISO 639-1, e.g. “fr” or “en-US”.
_lastChangedlastChanged()Date of most recent change made to the object.
_objClassobjClass()CMS object model class, e.g. “NewsPage”.
_pathpath()Path in the object hierarchy, e.g. “/about/staff” (optional).

_permalinkpermalink()Unique permanent URL component of the object, e.g. “news” (optional).
_publishedAtpublishedAt()Date of the most recent publish of the object.
_siteIdsiteId()ID of the website the object belongs to. “default” if the Scrivito CMS doesn’t have multi-site enabled.

Static method summary

Instance method summary

  • Returns the given object’s ancestor Objs, from the root object down to the object’s parent Obj.

  • New in 1.27.0

    Returns the attribute definitions of the corresponding CMS object class.

  • Returns a list of all Objs that link to this Obj.

  • Returns an array of all child Objs of the CMS object.

  • The content length (byte size) of a binary CMS object.

  • The content type of a binary CMS object.

  • The URL of a binary CMS object.

  • Creates a copy of the CMS object.

  • The date the CMS object was created.

  • New in 1.37.0
    Deletes the CMS object in the current working copy.
  • Returns a promise that is resolved after local changes to the CMS object have been saved.

  • Returns the date on which the CMS object was first published.

  • Retrieves the value of the specified custom attribute of the Obj.

  • The unique identifier of the Obj.

  • Indicates whether the Obj represents binary data.

  • Indicates whether or not the Obj is publicly accessible, i.e. visible to anonymous visitors.

  • New in 1.22.0

    Returns the language of the CMS object.

  • The date the CMS object was last changed.

  • The metadata of a binary CMS object.

  • Returns the modification an Obj has undergone.

  • The object class name of the Obj.

  • New in 1.32.0

    Returns an ordered array of all child Objs of the CMS object.

  • Returns the Obj representing the path-based parent of the Obj.

  • The value of the _path attribute of the CMS object.

  • The value of the _permalink attribute of the CMS object.

  • Returns the date on which an unmodified CMS object was most recently published.

  • Restricts the visibility of the Obj to logged-in visitors.

  • Returns the site ID of the CMS object.

  • The slug of the CMS object.

  • Unrestricts the visibility of the Obj, i.e. makes it visible to any visitor (after publishing).

  • Updates one or more attributes of the Obj.

  • New in 1.20.0

    Updates all references to other CMS objects, based on a mapping function.

  • New in 1.22.0

    Returns an Obj which is a specific language version of the given CMS object.

  • New in 1.22.0

    Returns all Objs that are language versions of the given CMS object, for all sites.

  • Accesses a widget by its id.

  • Returns all the CMS object’s widgets.