Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: install_plugin_overwrite_actions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
328            * Filters the list of action links available following a single plugin installation failure
329            * when overwriting is allowed.
330            *
331            * @since 5.5.0
332            *
333            * @param string[] $install_actions Array of plugin action links.
334            * @param object   $api             Object containing WordPress.org API plugin data.
335            * @param array    $new_plugin_data Array with uploaded plugin data.
336            */
337           $install_actions = apply_filters( 'install_plugin_overwrite_actions', $install_actions, $this->api, $new_plugin_data );
338
339           if ( ! empty( $install_actions ) ) {
340                printf(
341                     '<p class="update-from-upload-expired hidden">%s</p>',
342                     __( 'The uploaded file has expired. Please go back and upload it again.' )
343                );
344                echo '<p class="update-from-upload-actions">' . implode( ' ', (array) $install_actions ) . '</p>';
345           }
346