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