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
156                echo $file['error'];
157                return;
158           }
159
160           $this->file = $file['file'];
161           $result = $this->import_posts();
162           if ( is_wp_error( $result ) )
163                return $result;
164           wp_import_cleanup($file['id']);
165           do_action('import_done', 'blogware');
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;
174           else