Changeset 26345 for trunk/src/wp-admin/plugins.php
- Timestamp:
- 11/23/2013 11:03:21 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/plugins.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugins.php
r26263 r26345 148 148 } 149 149 plugin_sandbox_scrape( $plugin ); 150 do_action('activate_' . $plugin); 150 /** This action is documented in wp-admin/includes/plugins.php */ 151 do_action( "activate_{$plugin}" ); 151 152 exit; 152 153 break; … … 417 418 </h2> 418 419 419 <?php do_action( 'pre_current_active_plugins', $plugins['all'] ) ?> 420 <?php 421 /** 422 * Fires before the plugins list table is rendered. 423 * 424 * This hook also fires before the plugins list table is rendered in the Network Admin. 425 * 426 * Please note: The 'active' portion of the hook name does not refer to whether the current 427 * view is for active plugins, but rather all plugins actively-installed. 428 * 429 * @since 3.0.0 430 * 431 * @param array $plugins_all An array containing all installed plugins. 432 */ 433 do_action( 'pre_current_active_plugins', $plugins['all'] ); 434 ?> 420 435 421 436 <?php $wp_list_table->views(); ?>
Note: See TracChangeset
for help on using the changeset viewer.