Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: install_plugins_table_api_args_{$tab}

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
211            * Filters API request arguments for each Plugin Install screen tab.
212            *
213            * The dynamic portion of the hook name, `$tab`, refers to the plugin install tabs.
214            * Default tabs include 'featured', 'popular', 'recommended', 'favorites', and 'upload'.
215            *
216            * @since 3.7.0
217            *
218            * @param array|bool $args Plugin Install API arguments.
219            */
220           $args = apply_filters( "install_plugins_table_api_args_{$tab}", $args );
221
222           if ( !$args )
223                return;
224
225           $api = plugins_api( 'query_plugins', $args );
226
227           if ( is_wp_error( $api ) ) {
228                $this->error = $api;
229                return;