Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: network_sites_updated_message_{$action}

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
267                $msg = __( 'Site deactivated.' );
268           break;
269           case 'unspam':
270                $msg = __( 'Site removed from spam.' );
271           break;
272           case 'spam':
273                $msg = __( 'Site marked as spam.' );
274           break;
275           default:
276                $msg = apply_filters( 'network_sites_updated_message_' . $_REQUEST['action'] , __( 'Settings saved.' ) );
277           break;
278      }
279      if ( $msg )
280           $msg = '<div class="updated" id="message"><p>' . $msg . '</p></div>';
281 }
282
283 $wp_list_table->prepare_items();
284
285 require_once( '../admin-header.php' );