Skip to content

View Helpers

styleSheetLinkTag()

styleSheetLinkTag() — returns string

Available in: controller Category: Asset Functions

Returns a link tag for a stylesheet (or several) based on the supplied arguments.

NameTypeRequiredDefaultDescription
sourcesstringnoThe name of one or many CSS files in the stylesheets folder, minus the .css extension. Pass a full URL to generate a tag for an external style sheet. Can also be called with the source argument.
typestringnotext/cssThe type attribute for the link tag.
mediastringnoallThe media attribute for the link tag.
relstringnoThe rel attribute for the relation between the tag and href.
headbooleannofalseSet to true to place the output in the head area of the HTML page instead of the default behavior (which is to place the output where the function is called from).
delimstringno,The delimiter to use for the list of CSS files.
encodebooleannotrueUse this argument to decide whether the output of the function should be encoded in order to prevent Cross Site Scripting (XSS) attacks. Set it to true to encode all relevant output for the specific HTML element in question (e.g. tag content, attribute values, and URLs). For HTML elements that have both tag content and attribute values you can set this argument to attributes to only encode attribute values and not tag content.