- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-admin/includes/class-wp-plugins-list-table.php
r17807 r17450 196 196 } 197 197 198 function display_tablenav( $which ) { 199 global $status; 200 201 if ( !in_array( $status, array( 'mustuse', 'dropins' ) ) ) 202 parent::display_tablenav( $which ); 203 } 204 198 205 function get_views() { 199 206 global $totals, $status; … … 280 287 global $status; 281 288 282 if ( ! in_array($status, array('recently_activated', 'mustuse', 'dropins') ) ) 283 return; 284 285 echo '<div class="alignleft actions">'; 286 287 if ( 'recently_activated' == $status ) 288 submit_button( __( 'Clear List' ), 'secondary', 'clear-recent-list', false ); 289 elseif ( 'top' == $which && 'mustuse' == $status ) 290 echo '<p>' . __( 'Files in the <code>/wp-content/mu-plugins</code> directory are executed automatically.' ) . '</p>'; 291 elseif ( 'top' == $which && 'dropins' == $status ) 292 echo '<p>' . __( 'Drop-ins are advanced plugins in the <code>/wp-content</code> directory that replace WordPress functionality when present.' ) . '</p>'; 293 294 echo '</div>'; 289 if ( 'recently_activated' == $status ) { ?> 290 <div class="alignleft actions"> 291 <?php submit_button( __( 'Clear List' ), 'secondary', 'clear-recent-list', false ); ?> 292 </div> 293 <?php } 295 294 } 296 295
Note: See TracChangeset
for help on using the changeset viewer.