Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: plugins_api_args

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
38       * Override the Plugin Install API arguments.
39       *
40       * Please ensure that an object is returned.
41       *
42       * @since 2.7.0
43       *
44       * @param object $args   Plugin API arguments.
45       * @param string $action The type of information being requested from the Plugin Install API.
46       */
47      $args = apply_filters( 'plugins_api_args', $args, $action );
48
49      /**
50       * Allows a plugin to override the WordPress.org Plugin Install API entirely.
51       *
52       * Please ensure that an object is returned.
53       *
54       * @since 2.7.0
55       *
56       * @param bool|object         The result object. Default is false.