Make WordPress Core

Ticket #28785: 28785-plugin-custom-icons.2.diff

File 28785-plugin-custom-icons.2.diff, 2.7 KB (added by tellyworth, 10 years ago)

Refresh patch with better text wrapping.

  • wp-admin/css/list-tables.css

     
    12971297}
    12981298
    12991299.plugin-card h4 {
    1300         float: left;
    13011300        margin: 0 0 12px;
    13021301        font-size: 18px;
    13031302}
    13041303
    1305 .plugin-card .desc {
    1306         clear: left;
    1307 }
    1308 
    13091304.plugin-action-buttons {
     1305        clear: right;
    13101306        float: right;
    13111307        margin-left: 2em;
    13121308        margin-bottom: 1em;
     
    13501346        clear: right;
    13511347}
    13521348
     1349.plugin-icon {
     1350        width: 128px;
     1351        height: 128px;
     1352        float: left;
     1353        margin: 0 1em 1em 0;
     1354}
     1355
    13531356/* ms */
    13541357/* Background Color for Site Status */
    13551358.wp-list-table .site-deleted {
  • wp-admin/includes/class-wp-plugin-install-list-table.php

     
    9898                $args = array(
    9999                        'page' => $paged,
    100100                        'per_page' => $per_page,
    101                         'fields' => array( 'last_updated' => true, 'downloaded' => true ),
     101                        'fields' => array( 'last_updated' => true, 'downloaded' => true, 'icons' => true, 'banners' => true ),
    102102                        // Send the locale and installed plugin slugs to the API so it can provide context-sensitive results.
    103103                        'locale' => get_locale(),
    104104                        'installed_plugins' => $this->get_installed_plugin_slugs(),
     
    398398                        /* translators: 1: Plugin name and version. */
    399399                        $action_links[] = '<a href="' . esc_url( $details_link ) . '" class="thickbox" aria-label="' . esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '" data-title="' . esc_attr( $name ) . '">' . __( 'More Details' ) . '</a>';
    400400
     401                        $plugin_icon_url = $plugin['icons']['default'];
     402                        if ( !empty( $plugin['icons']['low'] ) )
     403                                $plugin_icon_url = $plugin['icons']['low'];
    401404
    402405                        /**
    403406                         * Filter the install action links for a plugin.
     
    411414                ?>
    412415                <div class="plugin-card">
    413416                        <div class="plugin-card-top">
     417                                <img src="<?php echo esc_attr( $plugin_icon_url ) ?>" class="plugin-icon" />
     418                                <div class="action-links">
     419                                        <?php
     420                                                if ( ! empty( $action_links ) ) {
     421                                                        echo '<ul class="plugin-action-buttons"><li>' . implode( '</li><li>', $action_links ) . '</li></ul>';
     422                                                }
     423                                        ?>
     424                                </div>
    414425                                <div class="name column-name">
    415426                                        <h4><a href="<?php echo esc_url( $details_link ); ?>" class="thickbox"><?php echo $title; ?></a></h4>
    416                                         <div class="action-links">
    417                                                 <?php
    418                                                         if ( ! empty( $action_links ) ) {
    419                                                                 echo '<ul class="plugin-action-buttons"><li>' . implode( '</li><li>', $action_links ) . '</li></ul>';
    420                                                         }
    421                                                 ?>
    422                                         </div>
    423427                                </div>
    424428                                <div class="desc column-description">
    425429                                        <p><?php echo $description; ?></p>