Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: browse-happy-notice

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1186           $locale = get_locale();
1187           if ( 'en_US' !== $locale )
1188                $browsehappy = add_query_arg( 'locale', $locale, $browsehappy );
1189
1190           $notice .= '<p>' . sprintf( __( '<a href="%1$s" class="update-browser-link">Update %2$s</a> or learn how to <a href="%3$s" class="browse-happy-link">browse happy</a>' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), esc_url( $browsehappy ) ) . '</p>';
1191           $notice .= '<p class="hide-if-no-js"><a href="" class="dismiss">' . __( 'Dismiss' ) . '</a></p>';
1192           $notice .= '<div class="clear"></div>';
1193      }
1194
1195      echo apply_filters( 'browse-happy-notice', $notice, $response );
1196 }
1197
1198 function dashboard_browser_nag_class( $classes ) {
1199      $response = wp_check_browser_version();
1200
1201      if ( $response && $response['insecure'] )
1202           $classes[] = 'browser-insecure';
1203
1204      return $classes;