Make WordPress Core

Ticket #25494: 25494.diff

File 25494.diff, 1.6 KB (added by DrewAPicture, 11 years ago)

generated from WP root

  • src/wp-admin/includes/bookmark.php

     
    7979 */
    8080function wp_delete_link( $link_id ) {
    8181        global $wpdb;
    82 
     82        /**
     83         * Fires action before link is deleted.
     84         *
     85         * @since 2.0.0
     86         *
     87         * @param int $link_id ID of the link to delete.
     88         */
    8389        do_action( 'delete_link', $link_id );
    8490
    8591        wp_delete_object_term_relationships( $link_id, 'link_category' );
    8692
    8793        $wpdb->delete( $wpdb->links, array( 'link_id' => $link_id ) );
    88 
     94        /**
     95         * Fires action after link is deleted.
     96         *
     97         * @since 2.0.0
     98         *
     99         * @param int $link_id ID of the link to delete.
     100         */
    89101        do_action( 'deleted_link', $link_id );
    90102
    91103        clean_bookmark_cache( $link_id );
     
    207219        wp_set_link_cats( $link_id, $link_category );
    208220
    209221        if ( $update )
     222                /**
     223                 * Fires action to be run when a link is updated in the database.
     224                 *
     225                 * @since 2.0.0
     226                 *
     227                 * @param int $link_id ID of the link to be updated.
     228                 */
    210229                do_action( 'edit_link', $link_id );
    211230        else
     231                /**
     232                 * Adds a link to the database.
     233                 *
     234                 * @since 2.0.0
     235                 *
     236                 * @param int $link_id ID of the link to be added.
     237                 */
    212238                do_action( 'add_link', $link_id );
    213239
    214240        clean_bookmark_cache( $link_id );