Changeset 9053 for trunk/wp-admin/includes/import.php
- Timestamp:
- 10/02/2008 01:03:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/import.php
r6477 r9053 1 1 <?php 2 /** 3 * WordPress Administration Importer API. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 2 8 9 /** 10 * {@internal Missing Short Description}} 11 * 12 * @since unknown 13 * 14 * @return unknown 15 */ 3 16 function get_importers() { 4 17 global $wp_importers; … … 8 21 } 9 22 23 /** 24 * {@internal Missing Short Description}} 25 * 26 * @since unknown 27 * 28 * @param unknown_type $id 29 * @param unknown_type $name 30 * @param unknown_type $description 31 * @param unknown_type $callback 32 * @return unknown 33 */ 10 34 function register_importer( $id, $name, $description, $callback ) { 11 35 global $wp_importers; … … 15 39 } 16 40 41 /** 42 * {@internal Missing Short Description}} 43 * 44 * @since unknown 45 * 46 * @param unknown_type $id 47 */ 17 48 function wp_import_cleanup( $id ) { 18 49 wp_delete_attachment( $id ); 19 50 } 20 51 52 /** 53 * {@internal Missing Short Description}} 54 * 55 * @since unknown 56 * 57 * @return unknown 58 */ 21 59 function wp_import_handle_upload() { 22 60 $overrides = array( 'test_form' => false, 'test_type' => false );
Note: See TracChangeset
for help on using the changeset viewer.