Make WordPress Core


Ignore:
Timestamp:
10/22/2009 04:10:28 PM (15 years ago)
Author:
ryan
Message:

GUU UI rough in. see #10973

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/update-core.php

    r12066 r12086  
    130130
    131131    list_plugin_updates();
    132     list_theme_updates();
     132    //list_theme_updates();
    133133}
    134134
     
    137137    if ( empty($plugins) )
    138138        return;
    139 ?>
     139    $form_action = '';
     140    ?>
    140141<h3><?php _e('Plugins'); ?></h3>
     142<form method="post" action="<?php $form_action; ?>" name="upgrade-plugins" class="upgrade">
     143<?php wp_nonce_field('upgrade-core'); ?>
     144<p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
    141145<table class="widefat" cellspacing="0" id="update-plugins-table">
    142146    <thead>
    143147    <tr>
    144148        <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
    145         <th scope="col" class="manage-column"><?php _e('Name'); ?></th>
     149        <th scope="col" class="manage-column"><?php _e('Select All'); ?></th>
    146150    </tr>
    147151    </thead>
     
    150154    <tr>
    151155        <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
    152         <th scope="col" class="manage-column"><?php _e('Name'); ?></th>
     156        <th scope="col" class="manage-column"><?php _e('Select All'); ?></th>
    153157    </tr>
    154158    </tfoot>
     
    165169    </tbody>
    166170</table>
     171<p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
     172</form>
    167173<?php
    168174}
Note: See TracChangeset for help on using the changeset viewer.