helpers\BaseHtml cssFile()

cssFile() public static method

Generates a link tag that refers to an external CSS file.

See also yii\helpers\Url::to().

public static string cssFile ( $url, $options = [] )
$url array|string

The URL of the external CSS file. This parameter will be processed by yii\helpers\Url::to().

$options array

The tag options in terms of name-value pairs. The following option is specially handled:

  • condition: specifies the conditional comments for IE, e.g., lt IE 9. When this is specified, the generated link tag will be enclosed within the conditional comments. This is mainly useful for supporting old versions of IE browsers.
  • noscript: if set to true, link tag will be wrapped into <noscript> tags.

The rest of the options will be rendered as the attributes of the resulting link tag. The values will be HTML-encoded using encode(). If a value is null, the corresponding attribute will not be rendered. See renderTagAttributes() for details on how attributes are being rendered.

return string

The generated link tag

doc_Yii
2016-10-30 17:05:02
Comments
Leave a Comment

Please login to continue.