Make WordPress Core

Ticket #18289: 18289.diff

File 18289.diff, 6.2 KB (added by andrewryno, 13 years ago)
  • wp-admin/includes/plugin-install.php

     
    261261        if ( empty($section) || ! isset($api->sections[ $section ]) )
    262262                $section = array_shift( $section_titles = array_keys((array)$api->sections) );
    263263
    264         iframe_header( __('Plugin Install') );
    265264        echo "<div id='$tab-header'>\n";
    266265        echo "<ul id='sidemenu'>\n";
    267266        foreach ( (array)$api->sections as $section_name => $content ) {
     
    362361                        echo "\t</div>\n";
    363362                }
    364363        echo "</div>\n";
    365 
    366         iframe_footer();
     364       
    367365        exit;
    368366}
    369 add_action('install_plugins_pre_plugin-information', 'install_plugin_information');
     367add_action('install_plugins_pre_plugin-information', 'install_plugin_information');
     368 No newline at end of file
  • wp-admin/includes/class-wp-plugin-install-list-table.php

     
    187187                        $author = wp_kses( $author, $plugins_allowedtags );
    188188
    189189                        $action_links = array();
    190                         $action_links[] = '<a href="' . self_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin=' . $plugin['slug'] .
    191                                                                 '&amp;TB_iframe=true&amp;width=600&amp;height=550' ) . '" class="thickbox" title="' .
    192                                                                 esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '">' . __( 'Details' ) . '</a>';
     190                        $action_links[] = '<a href="http://wordpress.org/extend/plugins/' . $plugin['slug'] . '/"
     191                                                                class="infoinline" name="' . $plugin['slug'] . '"
     192                                                                title="' . esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '">' . __( 'Details' ) . '</a>';
    193193
    194194                        if ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) {
    195195                                $status = install_plugin_install_status( $plugin );
  • wp-admin/js/plugin-install.dev.js

     
    1 /* Plugin Browser Thickbox related JS*/
    2 var tb_position;
    31jQuery(document).ready(function($) {
    4         tb_position = function() {
    5                 var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width, adminbar_height = 0;
    6 
    7                 if ( $('body.admin-bar').length )
    8                         adminbar_height = 28;
    9 
    10                 if ( tbWindow.size() ) {
    11                         tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
    12                         $('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
    13                         tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
    14                         if ( typeof document.body.style.maxWidth != 'undefined' )
    15                                 tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
    16                 };
    17 
    18                 return $('a.thickbox').each( function() {
    19                         var href = $(this).attr('href');
    20                         if ( ! href )
    21                                 return;
    22                         href = href.replace(/&width=[0-9]+/g, '');
    23                         href = href.replace(/&height=[0-9]+/g, '');
    24                         $(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 - adminbar_height ) );
    25                 });
    26         };
    27 
    28         $(window).resize(function(){ tb_position(); });
    29 
    30          $('#dashboard_plugins a.thickbox, .plugins a.thickbox').click( function() {
    31                 tb_click.call(this);
    32 
    33                 $('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
    34                 $('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&nbsp;' + $(this).attr('title') );
    35                 return false;
     2        $('a.infoinline').click(function(e) {
     3                if ($('#plugin-information').length < 1 ) {
     4                        $('<tr id="plugin-information"><td colspan="4"><div id="plugin-loading"><img src="' + ajaxurl.replace( '/admin-ajax.php', '' ) + '/images/loading.gif" alt="Loading..."></div></td></tr>').insertAfter($(this).parents('tr'));
     5                       
     6                        $('#plugin-information td').load(ajaxurl.replace( '/admin-ajax.php', '' ) + '/plugin-install.php?tab=plugin-information&plugin=' + $(this).attr('name'), function() {
     7                                $('#plugin-loading').remove();
     8                                $(this).wrapInner('<div style="display: none;"></div>').parent().find('td > div').slideDown('slow');
     9                        });
     10                       
     11                        $(this).text('Close Details');
     12                } else {
     13                        $('#plugin-information td > div').slideUp('slow', function() {
     14                                $('#plugin-information').remove();
     15                        });
     16                       
     17                        $(this).text('Details');
     18                }
     19               
     20                e.preventDefault();
    3621        });
    37 
    38         /* Plugin install related JS*/
    39         $('#plugin-information #sidemenu a').click( function() {
     22       
     23        $('#plugin-information #sidemenu a').live('click', function(e) {
    4024                var tab = $(this).attr('name');
    4125                //Flip the tab
    4226                $('#plugin-information-header a.current').removeClass('current');
     
    4428                //Flip the content.
    4529                $('#section-holder div.section').hide(); //Hide 'em all
    4630                $('#section-' + tab).show();
    47                 return false;
     31               
     32                e.preventDefault();
    4833        });
    4934
    5035        $('a.install-now').click( function() {
    5136                return confirm( plugininstallL10n.ays );
    5237        });
    53 });
     38});
     39 No newline at end of file
  • wp-admin/plugin-install.php

     
    2929
    3030wp_enqueue_style( 'plugin-install' );
    3131wp_enqueue_script( 'plugin-install' );
    32 if ( 'plugin-information' != $tab )
    33         add_thickbox();
    3432
    3533$body_id = $tab;
    3634
  • wp-admin/css/plugin-install.dev.css

     
     1#plugin-loading {
     2        padding: 5px 0;
     3        text-align: center;
     4}
     5
    16/* NOTE: the following CSS rules(.star*) are taken more or less straight from the bbPress rating plugin. */
    27div.star-holder {
    38        position: relative;
     
    4045        height: 19px;
    4146}
    4247
    43 /* Header on thickbox */
     48#plugin-information td {
     49        background: #fff;
     50        padding: 0;
     51}
     52
    4453#plugin-information-header {
    4554        margin: 0;
    4655        padding: 0 5px;
     
    5867        bottom: -1px;
    5968}
    6069
     70#plugin-information .updated p {
     71        margin: 0.5em 0;
     72}
     73
    6174/* Install sidemenu */
    6275#plugin-information p.action-button {
    6376        width: 100%;