WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 5538 | switch ( $type ) { |
| 5539 | case 'plugin': |
| 5540 | if ( ! current_user_can( 'update_plugins' ) ) { |
| 5541 | $error_message = __( 'Sorry, you are not allowed to modify plugins.' ); |
| 5542 | wp_send_json_error( array( 'error' => $error_message ) ); |
| 5543 | } |
| 5544 | |
| 5545 | $option = 'auto_update_plugins'; |
| 5546 | /** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */ |
| 5547 | $all_items = apply_filters( 'all_plugins', get_plugins() ); |
| 5548 | break; |
| 5549 | case 'theme': |
| 5550 | if ( ! current_user_can( 'update_themes' ) ) { |
| 5551 | $error_message = __( 'Sorry, you are not allowed to modify themes.' ); |
| 5552 | wp_send_json_error( array( 'error' => $error_message ) ); |
| 5553 | } |
| 5554 | |
| 5555 | $option = 'auto_update_themes'; |
| 5556 | $all_items = wp_get_themes(); |