]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/class.wp-styles.php
WordPress 3.4.2
[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         var $base_url;
21         var $content_url;
22         var $default_version;
23         var $text_direction = 'ltr';
24         var $concat = '';
25         var $concat_version = '';
26         var $do_concat = false;
27         var $print_html = '';
28         var $print_code = '';
29         var $default_dirs;
30
31         function __construct() {
32                 do_action_ref_array( 'wp_default_styles', array(&$this) );
33         }
34
35         function do_item( $handle ) {
36                 if ( !parent::do_item($handle) )
37                         return false;
38
39                 $obj = $this->registered[$handle];
40                 if ( null === $obj->ver )
41                         $ver = '';
42                 else
43                         $ver = $obj->ver ? $obj->ver : $this->default_version;
44
45                 if ( isset($this->args[$handle]) )
46                         $ver = $ver ? $ver . '&amp;' . $this->args[$handle] : $this->args[$handle];
47
48                 if ( $this->do_concat ) {
49                         if ( $this->in_default_dir($obj->src) && !isset($obj->extra['conditional']) && !isset($obj->extra['alt']) ) {
50                                 $this->concat .= "$handle,";
51                                 $this->concat_version .= "$handle$ver";
52
53                                 $this->print_code .= $this->get_data( $handle, 'after' );
54
55                                 return true;
56                         }
57                 }
58
59                 if ( isset($obj->args) )
60                         $media = esc_attr( $obj->args );
61                 else
62                         $media = 'all';
63
64                 $href = $this->_css_href( $obj->src, $ver, $handle );
65                 $rel = isset($obj->extra['alt']) && $obj->extra['alt'] ? 'alternate stylesheet' : 'stylesheet';
66                 $title = isset($obj->extra['title']) ? "title='" . esc_attr( $obj->extra['title'] ) . "'" : '';
67
68                 $end_cond = $tag = '';
69                 if ( isset($obj->extra['conditional']) && $obj->extra['conditional'] ) {
70                         $tag .= "<!--[if {$obj->extra['conditional']}]>\n";
71                         $end_cond = "<![endif]-->\n";
72                 }
73
74                 $tag .= apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-css' $title href='$href' type='text/css' media='$media' />\n", $handle );
75                 if ( 'rtl' === $this->text_direction && isset($obj->extra['rtl']) && $obj->extra['rtl'] ) {
76                         if ( is_bool( $obj->extra['rtl'] ) ) {
77                                 $suffix = isset( $obj->extra['suffix'] ) ? $obj->extra['suffix'] : '';
78                                 $rtl_href = str_replace( "{$suffix}.css", "-rtl{$suffix}.css", $this->_css_href( $obj->src , $ver, "$handle-rtl" ));
79                         } else {
80                                 $rtl_href = $this->_css_href( $obj->extra['rtl'], $ver, "$handle-rtl" );
81                         }
82
83                         $tag .= apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-rtl-css' $title href='$rtl_href' type='text/css' media='$media' />\n", $handle );
84                 }
85
86                 $tag .= $end_cond;
87
88                 if ( $this->do_concat ) {
89                         $this->print_html .= $tag;
90                         $this->print_html .= $this->print_inline_style( $handle, false );
91                 } else {
92                         echo $tag;
93                         $this->print_inline_style( $handle );
94                 }
95
96                 return true;
97         }
98
99         function add_inline_style( $handle, $code ) {
100                 if ( !$code )
101                         return false;
102
103                 $after = $this->get_data( $handle, 'after' );
104                 if ( !$after )
105                         $after = array();
106
107                 $after[] = $code;
108
109                 return $this->add_data( $handle, 'after', $after );
110         }
111
112         function print_inline_style( $handle, $echo = true ) {
113                 $output = $this->get_data( $handle, 'after' );
114
115                 if ( empty( $output ) )
116                         return false;
117
118                 $output = implode( "\n", $output );
119
120                 if ( !$echo )
121                         return $output;
122
123                 echo "<style type='text/css'>\n";
124                 echo "$output\n";
125                 echo "</style>\n";
126
127                 return true;
128         }
129
130         function all_deps( $handles, $recursion = false, $group = false ) {
131                 $r = parent::all_deps( $handles, $recursion );
132                 if ( !$recursion )
133                         $this->to_do = apply_filters( 'print_styles_array', $this->to_do );
134                 return $r;
135         }
136
137         function _css_href( $src, $ver, $handle ) {
138                 if ( !is_bool($src) && !preg_match('|^https?://|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) {
139                         $src = $this->base_url . $src;
140                 }
141
142                 if ( !empty($ver) )
143                         $src = add_query_arg('ver', $ver, $src);
144                 $src = apply_filters( 'style_loader_src', $src, $handle );
145                 return esc_url( $src );
146         }
147
148         function in_default_dir($src) {
149                 if ( ! $this->default_dirs )
150                         return true;
151
152                 foreach ( (array) $this->default_dirs as $test ) {
153                         if ( 0 === strpos($src, $test) )
154                                 return true;
155                 }
156                 return false;
157         }
158
159         function do_footer_items() { // HTML 5 allows styles in the body, grab late enqueued items and output them in the footer.
160                 $this->do_items(false, 1);
161                 return $this->done;
162         }
163
164         function reset() {
165                 $this->do_concat = false;
166                 $this->concat = '';
167                 $this->concat_version = '';
168                 $this->print_html = '';
169         }
170 }