Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Template Name

Purpose

Examples

display*

General prefix for all display templates. By default FarCry allows anonymous users to view anything prefixed with display*

displayPage*

A full page template display, typically incorporating header and footer HTML, and designating the entire page layout. These templates are available by default in the content editing wizards for contributors in community plugins, such as FarCry CMS.

./dmHTML/displayPageHome.cfm

displayPageStandard.cfm

In the absence of any additional criteria, FarCry will attempt to display a content object with this template, assuming it is available. It is in effect the "standard" full page template view.

displayTeaser*

A teaser view such as a title and short copy with a link to the full page view. Often used for listing other content objects on a page. Automatically recognised by many publishing rules.

./dmHTML/displayTeaserFeature.cfm

displayTeaserStandard.cfm

Similar to displayPageStandard, in that if no other criteria is given the framework will attempt to render a given content object with this template, assuming it is available and a teaser view is required.

displaySearchResult.cfm

Used in the farcryverity plugin to provide a universal search result teaser. As individual content types might be better suited to different teasers you can provide your own.

edit*

General prefix for editing a content type.

./dmProfile/editOwnProfile.cfm

edit.cfm

Default edit handler. Typically this is not present, at least in simple content types, as the framework will automatically build edit handlers from the formtool metadata. However, like most things in FarCry you can ovveride override this as needed.

These are just a few of the regularly used webskin names within the FarCry framework.

...