Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: after_plugin_row_meta

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
1267
1268                          /**
1269                           * Fires after plugin row meta.
1270                           *
1271                           * @since 6.5.0
1272                           *
1273                           * @param string $plugin_file Refer to {@see 'plugin_row_meta'} filter.
1274                           * @param array  $plugin_data Refer to {@see 'plugin_row_meta'} filter.
1275                           */
1276                          do_action( 'after_plugin_row_meta', $plugin_file, $plugin_data );
1277
1278                          if ( $paused ) {
1279                               $notice_text = __( 'This plugin failed to load properly and is paused during recovery mode.' );
1280
1281                               printf( '<p><span class="dashicons dashicons-warning"></span> <strong>%s</strong></p>', $notice_text );
1282
1283                               $error = wp_get_plugin_error( $plugin_file );
1284
1285                               if ( false !== $error ) {