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 |
---|---|
495 |
|
496 | /** |
497 | * Filter the install action links for a plugin. |
498 | * |
499 | * @since 2.7.0 |
500 | * |
501 | * @param array $action_links An array of plugin action hyperlinks. Defaults are links to Details and Install Now. |
502 | * @param array $plugin The plugin currently being listed. |
503 | */ |
504 | $action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin ); |
505 |
|
506 | $last_updated_timestamp = strtotime( $plugin['last_updated'] ); |
507 | ?> |
508 | <div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>"> |
509 | <div class="plugin-card-top"> |
510 | <div class="name column-name"> |
511 | <h3> |
512 | <a href="<?php echo esc_url( $details_link ); ?>" class="thickbox open-plugin-details-modal"> |
513 | <?php echo $title; ?> |