Brightspot CMS Developer Guide

Substitutions


Substitutions allow you to override existing methods in a base class that you cannot modify (for example, the source comes from an external dependency). As a result, Dari substitutes the new methods for the original methods everywhere the base class is used.

A substitution implements the Substitution interface, and it extends the class for which you want to substitute methods. Substitution implementations do not change the underlying parent classes.

The following substitution example changes the behavior of the base com.psddev.dari.db.Record#getLabel method for com.psddev.cms.db.Site objects. The base getLabel method returns the name of the site. The substitution method returns the name of the site, plus an indication of the site's global access.

public class SiteSubstitution extends Site implements Substitution {

    @Override
    public String getLabel() {
        boolean isGlobal = as(Site.ObjectModification.class).isGlobal(); 
        String label = super.getLabel(); 
        return isGlobal == true 
            ? label + "  (Can be accessed globally)"
            : label + "  (Cannot be accessed globally)";
}
  • Gets the value of the isGlobal flag. Because this flag was added to the original Site class via a system modification, isGlobal is accessed using the State.as method.
  • Gets the label of the site. As a subclass of Site, SiteSubstitutions can call super methods.
  • Returns the site name plus a parenthetical text string that indicates the site's global access status.


The label appears in the Brightspot Sites widget.

Sites widget.png Sites widget.png
Sites widget


Substitutions tell Dari to return the child substitution object whenever an instance of the parent class is requested in the code. In the example above, Dari returns SiteSubstitution whenever code retrieves an instance of Site.

Substitution only applies when retrieving existing objects. Substitution does not apply to creating new objects. For example, creating a new Site does not create a new SiteSubstitution object.

See also:

Previous Topic
Augmentations
Next Topic
Alterations
Was this topic helpful?
Thanks for your feedback.
Our robust, flexible Design System provides hundreds of pre-built components you can use to build the presentation layer of your dreams.

Asset types
Module types
Page types
Brightspot is packaged with content types that get you up and running in a matter of days, including assets, modules and landing pages.

Content types
Modules
Landing pages
Everything you need to know when creating, managing, and administering content within Brightspot CMS.

Dashboards
Publishing
Workflows
Admin configurations
A guide for installing, supporting, extending, modifying and administering code on the Brightspot platform.

Field types
Content modeling
Rich-text elements
Images
A guide to configuring Brightspot's library of integrations, including pre-built options and developer-configured extensions.

Google Analytics
Shopify
Apple News