]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/class.wp-styles.php
WordPress 4.1
[autoinstalls/wordpress.git] / wp-includes / class.wp-styles.php
1 <?php
2 /**
3  * BackPress Styles enqueue.
4  *
5  * These classes were refactored from the WordPress WP_Scripts and WordPress
6  * script enqueue API.
7  *
8  * @package BackPress
9  * @since r74
10  */
11
12 /**
13  * BackPress Styles enqueue class.
14  *
15  * @package BackPress
16  * @uses WP_Dependencies
17  * @since r74
18  */
19 class WP_Styles extends WP_Dependencies {
20         public $base_url;
21         public $content_url;
22         public $default_version;
23         public $text_direction = 'ltr';
24         public $concat = '';
25         public $concat_version = '';
26         public $do_concat = false;
27         public $print_html = '';
28         public $print_code = '';
29         public $default_dirs;
30
31         public function __construct() {
32                 /**
33                  * Fires when the WP_Styles instance is initialized.
34                  *
35                  * @since 2.6.0
36                  *
37                  * @param WP_Styles &$this WP_Styles instance, passed by reference.
38                  */
39                 do_action_ref_array( 'wp_default_styles', array(&$this) );
40         }
41
42         /**
43          * @param string $handle
44          * @return bool
45          */
46         public function do_item( $handle ) {
47                 if ( !parent::do_item($handle) )
48                         return false;
49
50                 $obj = $this->registered[$handle];
51                 if ( null === $obj->ver )
52                         $ver = '';
53                 else
54                         $ver = $obj->ver ? $obj->ver : $this->default_version;
55
56                 if ( isset($this->args[$handle]) )
57                         $ver = $ver ? $ver . '&amp;' . $this->args[$handle] : $this->args[$handle];
58
59                 if ( $this->do_concat ) {
60                         if ( $this->in_default_dir($obj->src) && !isset($obj->extra['conditional']) && !isset($obj->extra['alt']) ) {
61                                 $this->concat .= "$handle,";
62                                 $this->concat_version .= "$handle$ver";
63
64                                 $this->print_code .= $this->print_inline_style( $handle, false );
65
66                                 return true;
67                         }
68                 }
69
70                 if ( isset($obj->args) )
71                         $media = esc_attr( $obj->args );
72                 else
73                         $media = 'all';
74
75                 $href = $this->_css_href( $obj->src, $ver, $handle );
76                 if ( empty( $href ) ) {
77                         // Turns out there is nothing to print.
78                         return true;
79                 }
80                 $rel = isset($obj->extra['alt']) && $obj->extra['alt'] ? 'alternate stylesheet' : 'stylesheet';
81                 $title = isset($obj->extra['title']) ? "title='" . esc_attr( $obj->extra['title'] ) . "'" : '';
82
83                 /**
84                  * Filter the HTML link tag of an enqueued style.
85                  *
86                  * @since 2.6.0
87                  *
88                  * @param string         The link tag for the enqueued style.
89                  * @param string $handle The style's registered handle.
90                  */
91                 $tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-css' $title href='$href' type='text/css' media='$media' />\n", $handle );
92                 if ( 'rtl' === $this->text_direction && isset($obj->extra['rtl']) && $obj->extra['rtl'] ) {
93                         if ( is_bool( $obj->extra['rtl'] ) || 'replace' === $obj->extra['rtl'] ) {
94                                 $suffix = isset( $obj->extra['suffix'] ) ? $obj->extra['suffix'] : '';
95                                 $rtl_href = str_replace( "{$suffix}.css", "-rtl{$suffix}.css", $this->_css_href( $obj->src , $ver, "$handle-rtl" ));
96                         } else {
97                                 $rtl_href = $this->_css_href( $obj->extra['rtl'], $ver, "$handle-rtl" );
98                         }
99
100                         /** This filter is documented in wp-includes/class.wp-styles.php */
101                         $rtl_tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-rtl-css' $title href='$rtl_href' type='text/css' media='$media' />\n", $handle );
102
103                         if ( $obj->extra['rtl'] === 'replace' ) {
104                                 $tag = $rtl_tag;
105                         } else {
106                                 $tag .= $rtl_tag;
107                         }
108                 }
109
110                 if ( isset($obj->extra['conditional']) && $obj->extra['conditional'] ) {
111                         $tag = "<!--[if {$obj->extra['conditional']}]>\n" . $tag . "<![endif]-->\n";
112                 }
113
114                 if ( $this->do_concat ) {
115                         $this->print_html .= $tag;
116                         if ( $inline_style = $this->print_inline_style( $handle, false ) )
117                                 $this->print_html .= sprintf( "<style id='%s-inline-css' type='text/css'>\n%s\n</style>\n", esc_attr( $handle ), $inline_style );
118                 } else {
119                         echo $tag;
120                         $this->print_inline_style( $handle );
121                 }
122
123                 return true;
124         }
125
126         /**
127          * @param string $handle
128          * @param string $code
129          */
130         public function add_inline_style( $handle, $code ) {
131                 if ( ! $code ) {
132                         return false;
133                 }
134
135                 $after = $this->get_data( $handle, 'after' );
136                 if ( ! $after ) {
137                         $after = array();
138                 }
139
140                 $after[] = $code;
141
142                 return $this->add_data( $handle, 'after', $after );
143         }
144
145         /**
146          * @param string $handle
147          * @param bool $echo
148          * @return bool
149          */
150         public function print_inline_style( $handle, $echo = true ) {
151                 $output = $this->get_data( $handle, 'after' );
152
153                 if ( empty( $output ) ) {
154                         return false;
155                 }
156
157                 $output = implode( "\n", $output );
158
159                 if ( ! $echo ) {
160                         return $output;
161                 }
162
163                 printf( "<style id='%s-inline-css' type='text/css'>\n%s\n</style>\n", esc_attr( $handle ), $output );
164
165                 return true;
166         }
167
168         /**
169          * @param mixed $handles
170          * @param bool $recursion
171          * @param mixed $group
172          * @return bool
173          */
174         public function all_deps( $handles, $recursion = false, $group = false ) {
175                 $r = parent::all_deps( $handles, $recursion );
176                 if ( !$recursion ) {
177                         /**
178                          * Filter the array of enqueued styles before processing for output.
179                          *
180                          * @since 2.6.0
181                          *
182                          * @param array $to_do The list of enqueued styles about to be processed.
183                          */
184                         $this->to_do = apply_filters( 'print_styles_array', $this->to_do );
185                 }
186                 return $r;
187         }
188
189         /**
190          * @param string $src
191          * @param string $ver
192          * @param string $handle
193          * @return string
194          */
195         public function _css_href( $src, $ver, $handle ) {
196                 if ( !is_bool($src) && !preg_match('|^(https?:)?//|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) {
197                         $src = $this->base_url . $src;
198                 }
199
200                 if ( !empty($ver) )
201                         $src = add_query_arg('ver', $ver, $src);
202
203                 /**
204                  * Filter an enqueued style's fully-qualified URL.
205                  *
206                  * @since 2.6.0
207                  *
208                  * @param string $src    The source URL of the enqueued style.
209                  * @param string $handle The style's registered handle.
210                  */
211                 $src = apply_filters( 'style_loader_src', $src, $handle );
212                 return esc_url( $src );
213         }
214
215         /**
216          * @param string $src
217          * @return bool
218          */
219         public function in_default_dir($src) {
220                 if ( ! $this->default_dirs )
221                         return true;
222
223                 foreach ( (array) $this->default_dirs as $test ) {
224                         if ( 0 === strpos($src, $test) )
225                                 return true;
226                 }
227                 return false;
228         }
229
230         public function do_footer_items() { // HTML 5 allows styles in the body, grab late enqueued items and output them in the footer.
231                 $this->do_items(false, 1);
232                 return $this->done;
233         }
234
235         public function reset() {
236                 $this->do_concat = false;
237                 $this->concat = '';
238                 $this->concat_version = '';
239                 $this->print_html = '';
240         }
241 }