Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: import_done

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
151                return;
152           }
153
154           $this->file = $file['file'];
155           $this->get_posts();
156           $result = $this->import_posts();
157           if ( is_wp_error( $result ) )
158                return $result;
159           wp_import_cleanup($file['id']);
160           do_action('import_done', 'rss');
161
162           echo '<h3>';
163           printf(__('All done. <a href="%s">Have fun!</a>'), get_option('home'));
164           echo '</h3>';
165      }
166
167      function dispatch() {
168           if (empty ($_GET['step']))
169                $step = 0;