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
224            *  - `install_plugins_table_api_args_featured`
225            *  - `install_plugins_table_api_args_popular`
226            *  - `install_plugins_table_api_args_recommended`
227            *  - `install_plugins_table_api_args_upload`
228            *
229            * @since 3.7.0
230            *
231            * @param array|false $args Plugin install API arguments.
232            */
233           $args = apply_filters( "install_plugins_table_api_args_{$tab}", $args );
234
235           if ( ! $args ) {
236                return;
237           }
238
239           $api = plugins_api( 'query_plugins', $args );
240
241           if ( is_wp_error( $api ) ) {
242                $this->error = $api;