Brightspot CMS Developer Guide

Resource bundles


You can use Java-style .properties files to customize the content edit form for a given model.

Note
Resource bundles are also used for localization. For details, see Localization.


See also:


The following procedure describes how to create a properties file for a given model.

  1. Change to or create the resources/ directory for your Brightspot project. This directory is in the standard position for Maven projects, src/main/resources/, although your Brightspot project may have a different resources/ directory for different themes.
  2. Change to or create the subdirectory corresponding to the required model. For example, if you are configuring the content edit form for a model brightspot/core/article/Article.java, change to or create the resources subdirectory brightspot/core/article/.
  3. Create or open the file Default_xx.properties, where xx is the code of the target language. For example, the file ArticleDefault_en.properties overrides the model associated with articles for English-language locales. For a list of two-letter language codes, see Codes for the Representation of Names of Languages.
  4. In the properties file, add lines of the form key=value. Use the following sections for a description of the available keys.
  5. Reload or rebuild your Brightspot project.


The properties key field renames a field on the content edit form.

  1. Following the procedure in Creating properties files, create or open open the appropriate .properties file.
  2. In the properties file, add a line of the form field.<fieldname>=<newname>.

Fields not appearing in this file have labels derived from their names in the model or as otherwise annotated.

The following snippet renames the field headline on the content edit form.

field.headline=Teaser Headline

Renaming Resource Files.png Renaming Resource Files.png

For additional information, see @Recordable.DisplayName.


The properties key displayName renames a content type throughout the Brightspot UI.

  1. Following the procedure in Creating properties files, create or open open the appropriate .properties file.
  2. In the properties file, add a line of the form displayName=NewLabel. Do not enclose the label in quotes.

In the file resources/article/ArticleOverride.properties, the following line displays Story instead of Article in Brightspot.

displayName=Story

Renaming content types.svg Renaming content types.svg

For additional information, see @Recordable.DisplayName.


The properties key hidden prevents a content type from appearing in Brightspot.

  1. Following the procedure in Creating properties files, create or open open the appropriate .properties file.
  2. In the properties file, add a line hidden=true.

In the file resources/article/ArticleOverride.properties, the following line prevents Article from appearing in Brightspot.

hidden=true

For additional information, see @ToolUi.Hidden.


The properties key field.<fieldname>.hidden hides <fieldname> in the content edit form.

  1. Following the procedure in Creating properties files, create or open open the appropriate .properties file.
  2. In the properties file, add a line of the form field.<fieldName>.hidden=true.

The following snippet hides the Sub Headline field in the content edit form.

field.subHeadline.hidden=true


EditForm Fields Not Hidden.png EditForm Fields Not Hidden.png
Content edit form with visible sub-headline
EditForm Fields Hidden.png EditForm Fields Hidden.png
Content edit form with hidden sub-headline

For additional information, see @ToolUi.Hidden.


The properties key fieldDisplayOrder sets the display order of fields on the content edit form.

  1. Following the procedure in Creating properties files, create or open open the appropriate .properties file.
  2. In the properties file, add a line of the form fieldDisplayOrder=fieldName [,fieldname ...].

Fields not appearing in this line appear in the order as in the model or as otherwise annotated.

The following snippet places the author field before the headline and body fields in the content edit form.

fieldDisplayOrder=author,headline,body

Changing Field Order.png Changing Field Order.png

For additional information, see @ToolUi.FieldDisplayOrder.


A Multipurpose Internet Mail Extensions (MIME) type is a standard description of a file based on its extension. Brightspot comes with the standard list of MIME types, and you can use the method ObjectUtils#getContentType to retrieve it.

import com.psddev.cms.db.Content;
import com.psddev.dari.util.StorageItem;

public class Article extends Content {

    private StorageItem image;

    public String getImage() {
        return image.getPublicUrl();
    }

    public void setImage(StorageItem image) {
        this.image = image;
    }
}

In the previous snippet, the method getImage() returns the path, such as /storage/1f/asteroid.jpg, to the stored image. You can use the path to look up the MIME type.

import com.psddev.cms.view.ViewModel;
import com.psddev.cms.view.PageEntryView;
import com.psddev.dari.util.ObjectUtils;
import com.psddev.styleguide.content.article.ArticleView;

public class ArticleViewModel extends ViewModel<Article> implements ArticleView, PageEntryView {

    /* Overridden interface methods */

    private String getMimeType() {
        String path = model.getImage(); 
        return ObjectUtils.getContentType(path); 
    }
}
  • Retrieves the current image’s path from the model.
  • Looks up the MIME type from a global file containing the standard list of MIME types. If you upload a file whose extension does not appear in that list, the method getContentType returns the string application/octet-stream.

You can add additional MIME types to your Brightspot project, and you can override the string returned for an existing MIME type.

  1. In your Brightspot project, create a file com/psddev/dari/util/mime.types file in a resources/ directory following the package structure of the source file that looks up MIME types. For example, if you have a Java file /src/main/java/content/article/ArticleViewModel.java, create a file src/main/resources/com/psddev/dari/util/mime.types.
  2. Copy the file standard list of MIME types into the new file mime.types from step 1.
  3. Modify and add MIME types as required.
  4. Rebuild your Brightspot project.
#image/jpeg     jpeg jpg jpe
image/jpg       jpeg jpg jpe 
image/xcf       xcf 
  • Returns the string image/jpg for file extensions jpeg, jpg, and jpe, overriding the standard image/jpeg.
  • Returns the string image/xcf for the file extension xcf (associated with the GIMP image editor).

See also:

Previous Topic
Inheritance
Next Topic
Secure secrets
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