Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: make_spam_blog

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

This hook occurs 2 times in this file.

Line Code
332      if ( $details['spam'] != $current_details['spam'] ) {
333           if ( $details['spam'] == 1 ) {
334                /**
335                 * Fires when the blog status is changed to 'spam'.
336                 *
337                 * @since MU
338                 *
339                 * @param int $blog_id Blog ID.
340                 */
341                do_action( 'make_spam_blog', $blog_id );
342           } else {
343                /**
344                 * Fires when the blog status is changed to 'ham'.
345                 *
346                 * @since MU
347                 *
348                 * @param int $blog_id Blog ID.
349                 */
350                do_action( 'make_ham_blog', $blog_id );
 
Line Code
811
812      if ( false === $result )
813           return false;
814
815      refresh_blog_details( $blog_id );
816
817      if ( 'spam' == $pref ) {
818           if ( $value == 1 ) {
819                /** This filter is documented in wp-includes/ms-blogs.php */
820                do_action( 'make_spam_blog', $blog_id );
821           } else {
822                /** This filter is documented in wp-includes/ms-blogs.php */
823                do_action( 'make_ham_blog', $blog_id );
824           }
825      } elseif ( 'mature' == $pref ) {
826           if ( $value == 1 ) {
827                /** This filter is documented in wp-includes/ms-blogs.php */
828                do_action( 'mature_blog', $blog_id );
829           } else {