Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wpmu_delete_blog_upload_dir

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
857
858      /**
859       * Filters the upload base directory to delete when the site is deleted.
860       *
861       * @since MU (3.0.0)
862       *
863       * @param string $uploads['basedir'] Uploads path without subdirectory. @see wp_upload_dir()
864       * @param int    $site_id            The site ID.
865       */
866      $dir     = apply_filters( 'wpmu_delete_blog_upload_dir', $uploads['basedir'], $site->id );
867      $dir     = rtrim( $dir, DIRECTORY_SEPARATOR );
868      $top_dir = $dir;
869      $stack   = array( $dir );
870      $index   = 0;
871
872      while ( $index < count( $stack ) ) {
873           // Get indexed directory from stack.
874           $dir = $stack[ $index ];
875