IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 85 | 85 | * |
| 86 | 86 | * @since 2.6.0 |
| 87 | 87 | * @since 4.3.0 Introduced the `$href` parameter. |
| | 88 | * @since 4.4.0 Introduced the `$media` parameter. |
| 88 | 89 | * |
| 89 | 90 | * @param string $html The link tag for the enqueued style. |
| 90 | 91 | * @param string $handle The style's registered handle. |
| 91 | 92 | * @param string $href The stylesheet's source URL. |
| 92 | 93 | */ |
| 93 | | $tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-css' $title href='$href' type='text/css' media='$media' />\n", $handle, $href ); |
| | 94 | $tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-css' $title href='$href' type='text/css' media='$media' />\n", $handle, $href, $media); |
| 94 | 95 | if ( 'rtl' === $this->text_direction && isset($obj->extra['rtl']) && $obj->extra['rtl'] ) { |
| 95 | 96 | if ( is_bool( $obj->extra['rtl'] ) || 'replace' === $obj->extra['rtl'] ) { |
| 96 | 97 | $suffix = isset( $obj->extra['suffix'] ) ? $obj->extra['suffix'] : ''; |