Make WordPress Core

Changeset 15820


Ignore:
Timestamp:
10/16/2010 01:26:54 PM (13 years ago)
Author:
scribu
Message:

Get rid of old link category management files. Fixes #12285

Location:
trunk/wp-admin
Files:
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-tag-form.php

    r15798 r15820  
    1717}
    1818
     19// Back compat hooks
    1920if ( 'category' == $taxonomy )
    2021    do_action('edit_category_form_pre', $tag );
     22elseif ( 'link_category' == $taxonomy )
     23    do_action('edit_link_category_form_pre', $tag );
    2124else
    2225    do_action('edit_tag_form_pre', $tag);
     26
    2327do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy);  ?>
    2428
     
    6266        </tr>
    6367        <?php
     68        // Back compat hooks
    6469        if ( 'category' == $taxonomy )
    6570            do_action('edit_category_form_fields', $tag);
     71        if ( 'link_category' == $taxonomy )
     72            do_action('edit_link_category_form_fields', $tag);
    6673        else
    6774            do_action('edit_tag_form_fields', $tag);
     75
    6876        do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy);
    6977        ?>
    7078    </table>
    7179<?php
     80// Back compat hooks
    7281if ( 'category' == $taxonomy )
    7382    do_action('edit_category_form', $tag);
     83if ( 'link_category' == $taxonomy )
     84    do_action('edit_link_category_form', $tag);
    7485else
    7586    do_action('edit_tag_form', $tag);
     87
    7688do_action($taxonomy . '_edit_form', $tag, $taxonomy);
    7789?>
  • trunk/wp-admin/edit-tags.php

    r15746 r15820  
    284284
    285285if ( current_user_can($tax->cap->edit_terms) ) {
    286     if ( 'category' == $taxonomy )
    287         do_action('add_category_form_pre', (object)array('parent' => 0) );  // Back compat hook. Deprecated in preference to $taxonomy_pre_add_form
    288     else
    289         do_action('add_tag_form_pre', $taxonomy); // Back compat hook. Applies to all Taxonomies -not- categories
     286    // Back compat hooks. Deprecated in preference to {$taxonomy}_pre_add_form
     287    if ( 'category' == $taxonomy )
     288        do_action('add_category_form_pre', (object)array('parent' => 0) );
     289    elseif ( 'link_category' == $taxonomy )
     290        do_action('add_link_category_form_pre', (object)array('parent' => 0) );
     291    else
     292        do_action('add_tag_form_pre', $taxonomy);
     293
    290294    do_action($taxonomy . '_pre_add_form', $taxonomy);
    291295?>
     
    334338<p class="submit"><input type="submit" class="button" name="submit" id="submit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" /></p>
    335339<?php
     340// Back compat hooks. Deprecated in preference to {$taxonomy}_add_form
    336341if ( 'category' == $taxonomy )
    337     do_action('edit_category_form', (object)array('parent' => 0) );  // Back compat hook. Deprecated in preference to $taxonomy_add_form
     342    do_action('add_category_form', (object)array('parent' => 0) );
     343elseif ( 'link_category' == $taxonomy )
     344    do_action('add_link_category_form', (object)array('parent' => 0) );
    338345else
    339     do_action('add_tag_form', $taxonomy); // Back compat hook. Applies to all Taxonomies -not- categories
     346    do_action('add_tag_form', $taxonomy);
     347
    340348do_action($taxonomy . '_add_form', $taxonomy);
    341349?>
Note: See TracChangeset for help on using the changeset viewer.