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
189            * Filter API request arguments for each Plugin Install screen tab.
190            *
191            * The dynamic portion of the hook name, `$tab`, refers to the plugin install tabs.
192            * Default tabs include 'featured', 'popular', 'recommended', 'favorites', and 'upload'.
193            *
194            * @since 3.7.0
195            *
196            * @param array|bool $args Plugin Install API arguments.
197            */
198           $args = apply_filters( "install_plugins_table_api_args_$tab", $args );
199
200           if ( !$args )
201                return;
202
203           $api = plugins_api( 'query_plugins', $args );
204
205           if ( is_wp_error( $api ) ) {
206                $this->error = $api;
207                return;