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 |
---|---|
518 |
|
519 | /** |
520 | * Filters the install action links for a plugin. |
521 | * |
522 | * @since 2.7.0 |
523 | * |
524 | * @param array $action_links An array of plugin action hyperlinks. Defaults are links to Details and Install Now. |
525 | * @param array $plugin The plugin currently being listed. |
526 | */ |
527 | $action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin ); |
528 |
|
529 | $last_updated_timestamp = strtotime( $plugin['last_updated'] ); |
530 | ?> |
531 | <div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>"> |
532 | <div class="plugin-card-top"> |
533 | <div class="name column-name"> |
534 | <h3> |
535 | <a href="<?php echo esc_url( $details_link ); ?>" class="thickbox open-plugin-details-modal"> |
536 | <?php echo $title; ?> |