Make WordPress Core

Changeset 14123


Ignore:
Timestamp:
04/17/2010 12:27:13 PM (14 years ago)
Author:
dd32
Message:

Toggle between "Show Details" and "Hide Details" on GUU; Add no-js CSS class support to generic iframe header. Props ocean90. Fixes #12919

Location:
trunk/wp-admin/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-upgrader.php

    r13827 r14123  
    10561056        $this->upgrader->strings['skin_update_failed_error'] = __('An error occured while updating %1$s: <strong>%2$s</strong>.');
    10571057        $this->upgrader->strings['skin_update_failed'] = __('The update of %1$s failed.');
    1058         $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully. <a onclick="%2$s" href="#">See Details</a>.');
     1058        $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully. <a onclick="%2$s" href="#" class="hide-if-no-js"><span>Show Details</span><span class="hidden">Hide Details</span>.</a>');
    10591059    }
    10601060
     
    10881088            $this->error = $this->upgrader->strings[$error];
    10891089
    1090         if ( is_wp_error($error) && $error->get_error_code() ) {
     1090        if ( is_wp_error($error) ) {
    10911091            foreach ( $error->get_error_messages() as $emessage ) {
    10921092                if ( $error->get_error_data() )
     
    11021102        $this->in_loop = true;
    11031103        printf( '<h4>' . $this->upgrader->strings['skin_before_update_header'] . '</h4>',  $title, $this->upgrader->update_current, $this->upgrader->update_count);
    1104         echo '<div class="update-messages" style="display:none" id="progress-' . esc_attr($this->upgrader->update_current) . '"><p>';
     1104        echo '<div class="update-messages hide-if-js" id="progress-' . esc_attr($this->upgrader->update_current) . '"><p>';
    11051105        $this->flush_output();
    11061106    }
     
    11171117        }
    11181118        if ( !empty($this->result) && !is_wp_error($this->result) ) {
    1119             echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle(); return false;') . '</p></div>';
     1119            echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '</p></div>';
    11201120        }
    11211121        $this->reset();
  • trunk/wp-admin/includes/template.php

    r14113 r14123  
    34653465 */
    34663466function iframe_header( $title = '', $limit_styles = false ) {
     3467global $hook_suffix;
    34673468?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    34683469<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
     
    34863487do_action('admin_print_scripts');
    34873488do_action('admin_head');
     3489
     3490$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
     3491if ( get_user_setting('mfold') == 'f' )
     3492    $admin_body_class .= ' folded';
    34883493?>
    34893494</head>
    3490 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?>>
     3495<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?>  class="wp-admin no-js<?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
     3496<script type="text/javascript">
     3497//<![CDATA[
     3498(function(){
     3499var c = document.body.className;
     3500c = c.replace(/no-js/, 'js');
     3501document.body.className = c;
     3502})();
     3503//]]>
     3504</script>
    34913505<?php
    34923506}
Note: See TracChangeset for help on using the changeset viewer.