Conditions | 9 |
Paths | 48 |
Total Lines | 38 |
Code Lines | 30 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | function render() { |
||
15 | global $is_IE; |
||
16 | $root = $this->_bind(); |
||
17 | |||
18 | // Add browser and RTL classes. |
||
19 | // We have to do this here since admin bar shows on the front end. |
||
20 | $class = 'nojq nojs rtl'; |
||
21 | if ( $is_IE ) { |
||
22 | if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE 7' ) ) { |
||
23 | $class .= ' ie7'; |
||
24 | } elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE 8' ) ) { |
||
25 | $class .= ' ie8'; |
||
26 | } elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE 9' ) ) { |
||
27 | $class .= ' ie9'; |
||
28 | } |
||
29 | } elseif ( wp_is_mobile() ) { |
||
30 | $class .= ' mobile'; |
||
31 | } |
||
32 | |||
33 | ?> |
||
34 | <div id="wpadminbar" class="<?php echo $class; ?>"> |
||
35 | <?php if ( ! is_admin() ) : ?> |
||
36 | <a class="screen-reader-shortcut" href="#wp-toolbar" tabindex="1"><?php _e( 'Skip to toolbar', 'jetpack' ); ?></a> |
||
37 | <?php endif; ?> |
||
38 | <div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="<?php esc_attr_e( 'Toolbar', 'jetpack' ); ?>" tabindex="0"> |
||
39 | <?php |
||
40 | foreach ( $root->children as $group ) : |
||
41 | $this->_render_group( $group ); |
||
42 | endforeach; |
||
43 | ?> |
||
44 | </div> |
||
45 | <?php if ( is_user_logged_in() ) : ?> |
||
46 | <a class="screen-reader-shortcut" href="<?php echo esc_url( wp_logout_url() ); ?>"><?php _e( 'Log Out', 'jetpack' ); ?></a> |
||
47 | <?php endif; ?> |
||
48 | </div> |
||
49 | |||
50 | <?php |
||
51 | } |
||
52 | } |
||
53 |