WP_Terms_List_Table::inline_edit()

Outputs the hidden row displayed when inline editing


Description Description


Source Source

File: wp-admin/includes/class-wp-terms-list-table.php

605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
public function inline_edit() {
    $tax = get_taxonomy( $this->screen->taxonomy );
 
    if ( ! current_user_can( $tax->cap->edit_terms ) ) {
        return;
    }
    ?>
 
<form method="get"><table style="display: none"><tbody id="inlineedit">
    <tr id="inline-edit" class="inline-edit-row" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
 
        <fieldset>
            <legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend>
            <div class="inline-edit-col">
            <label>
                <span class="title"><?php _ex( 'Name', 'term name' ); ?></span>
                <span class="input-text-wrap"><input type="text" name="name" class="ptitle" value="" /></span>
            </label>
    <?php if ( ! global_terms_enabled() ) { ?>
            <label>
                <span class="title"><?php _e( 'Slug' ); ?></span>
                <span class="input-text-wrap"><input type="text" name="slug" class="ptitle" value="" /></span>
            </label>
<?php } ?>
        </div></fieldset>
    <?php
 
    $core_columns = array(
        'cb'          => true,
        'description' => true,
        'name'        => true,
        'slug'        => true,
        'posts'       => true,
    );
 
    list( $columns ) = $this->get_column_info();
 
    foreach ( $columns as $column_name => $column_display_name ) {
        if ( isset( $core_columns[ $column_name ] ) ) {
            continue;
        }
 
        /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
        do_action( 'quick_edit_custom_box', $column_name, 'edit-tags', $this->screen->taxonomy );
    }
 
    ?>
 
    <div class="inline-edit-save submit">
        <button type="button" class="cancel button alignleft"><?php _e( 'Cancel' ); ?></button>
        <button type="button" class="save button button-primary alignright"><?php echo $tax->labels->update_item; ?></button>
        <span class="spinner"></span>
        <?php wp_nonce_field( 'taxinlineeditnonce', '_inline_edit', false ); ?>
        <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $this->screen->taxonomy ); ?>" />
        <input type="hidden" name="post_type" value="<?php echo esc_attr( $this->screen->post_type ); ?>" />
        <br class="clear" />
        <div class="notice notice-error notice-alt inline hidden">
            <p class="error"></p>
        </div>
    </div>
    </td></tr>
    </tbody></table></form>
    <?php
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.