Make WordPress Core


Ignore:
Timestamp:
10/10/2008 06:21:16 PM (17 years ago)
Author:
ryan
Message:

phpdoc for wp-admin. Props jacobsantos. see #7527

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/import.php

    r9053 r9119  
    88
    99/**
    10  * {@internal Missing Short Description}}
     10 * Retrieve list of importers.
    1111 *
    12  * @since unknown
     12 * @since 2.0.0
    1313 *
    14  * @return unknown
     14 * @return array
    1515 */
    1616function get_importers() {
     
    2222
    2323/**
    24  * {@internal Missing Short Description}}
     24 * Register importer for WordPress.
    2525 *
    26  * @since unknown
     26 * @since 2.0.0
    2727 *
    28  * @param unknown_type $id
    29  * @param unknown_type $name
    30  * @param unknown_type $description
    31  * @param unknown_type $callback
    32  * @return unknown
     28 * @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.
    3333 */
    3434function register_importer( $id, $name, $description, $callback ) {
     
    4040
    4141/**
    42  * {@internal Missing Short Description}}
     42 * Cleanup importer.
    4343 *
    44  * @since unknown
     44 * Removes attachment based on ID.
    4545 *
    46  * @param unknown_type $id
     46 * @since 2.0.0
     47 *
     48 * @param string $id Importer ID.
    4749 */
    4850function wp_import_cleanup( $id ) {
     
    5153
    5254/**
    53  * {@internal Missing Short Description}}
     55 * Handle importer uploading and add attachment.
    5456 *
    55  * @since unknown
     57 * @since 2.0.0
    5658 *
    57  * @return unknown
     59 * @return array
    5860 */
    5961function wp_import_handle_upload() {
Note: See TracChangeset for help on using the changeset viewer.