Making WordPress.org


Ignore:
Timestamp:
11/21/2016 01:38:13 AM (10 years ago)
Author:
dd32
Message:

Plugin Directory: Reviewer admin UX tweaks

  • Rename the menu from 'My Plugins' to 'Repo Plugins' to match theme directory
  • Extend the 'slug' and 'author' inputs to be longer, accomodating longer slugs
  • Add the 'submitter' column to the list view (post_author)
  • Add the taxonomies columns to the list view (committer, contributors, tags

Plugin reviewers will most likely need to remove some of the columns through Screen Options to make the page usable, we can also remove some of the columns if they're not likely to be used.

See #2249.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php

    r4260 r4383  
    108108                        switch ( $hook_suffix ) {
    109109                                case 'post.php':
    110                                         wp_enqueue_style( 'plugin-admin-post-css', plugins_url( 'css/edit-form.css', Plugin_Directory\PLUGIN_FILE ), array( 'edit' ), 1 );
     110                                        wp_enqueue_style( 'plugin-admin-post-css', plugins_url( 'css/edit-form.css', Plugin_Directory\PLUGIN_FILE ), array( 'edit' ), 2 );
    111111                                        wp_enqueue_script( 'plugin-admin-post-js', plugins_url( 'js/edit-form.js', Plugin_Directory\PLUGIN_FILE ), array( 'wp-util', 'wp-lists' ), 1 );
    112112                                        wp_localize_script( 'plugin-admin-post-js', 'pluginDirectory', array(
     
    116116
    117117                                case 'edit.php':
    118                                         wp_enqueue_style( 'plugin-admin-edit-css', plugins_url( 'css/plugin-list.css', Plugin_Directory\PLUGIN_FILE ), array(), 1 );
     118                                        wp_enqueue_style( 'plugin-admin-edit-css', plugins_url( 'css/plugin-list.css', Plugin_Directory\PLUGIN_FILE ), array(), 2 );
    119119                                        break;
    120120                        }
Note: See TracChangeset for help on using the changeset viewer.