Changeset 9119 for trunk/wp-admin/includes/import.php
- Timestamp:
- 10/10/2008 06:21:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/import.php
r9053 r9119 8 8 9 9 /** 10 * {@internal Missing Short Description}}10 * Retrieve list of importers. 11 11 * 12 * @since unknown12 * @since 2.0.0 13 13 * 14 * @return unknown14 * @return array 15 15 */ 16 16 function get_importers() { … … 22 22 23 23 /** 24 * {@internal Missing Short Description}}24 * Register importer for WordPress. 25 25 * 26 * @since unknown26 * @since 2.0.0 27 27 * 28 * @param unknown_type $id29 * @param unknown_type $name30 * @param unknown_type $description31 * @param unknown_type $callback32 * @return unknown28 * @param string $id Importer tag. Used to uniquely identify importer. 29 * @param string $name Importer name and title. 30 * @param string $description Importer description. 31 * @param callback $callback Callback to run. 32 * @return WP_Error Returns WP_Error when $callback is WP_Error. 33 33 */ 34 34 function register_importer( $id, $name, $description, $callback ) { … … 40 40 41 41 /** 42 * {@internal Missing Short Description}}42 * Cleanup importer. 43 43 * 44 * @since unknown44 * Removes attachment based on ID. 45 45 * 46 * @param unknown_type $id 46 * @since 2.0.0 47 * 48 * @param string $id Importer ID. 47 49 */ 48 50 function wp_import_cleanup( $id ) { … … 51 53 52 54 /** 53 * {@internal Missing Short Description}}55 * Handle importer uploading and add attachment. 54 56 * 55 * @since unknown57 * @since 2.0.0 56 58 * 57 * @return unknown59 * @return array 58 60 */ 59 61 function wp_import_handle_upload() {
Note: See TracChangeset
for help on using the changeset viewer.