You are here

function hook_media_browser_plugin_info in D7 Media 7

Same name and namespace in other branches
  1. 7.4 media.api.php \hook_media_browser_plugin_info()
  2. 7.2 media.api.php \hook_media_browser_plugin_info()
  3. 7.3 media.api.php \hook_media_browser_plugin_info()

Returns a list of plugins for the media browser.

Plugins are defined in a multi-dimensional associative array format with the following keys:

  • #weight (optional): Weight of the plugin in relation to other plugins when being displayed, e.g. tabs in the browser.

@example <code> array( 'unique_plugin_name' => array( '#weight' => 42, ), ); </code>

2 functions implement hook_media_browser_plugin_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

media_internet_media_browser_plugin_info in modules/media_internet/media_internet.media.inc
Implements hook_media_browser_plugin_info().
media_media_browser_plugin_info in ./media.media.inc
Implements hook_media_browser_plugin_info().
1 invocation of hook_media_browser_plugin_info()
media_browser in includes/media.browser.inc
@file Media Browser page callback

File

./media.api.php, line 69
Hook provided by the media module.

Code

function hook_media_browser_plugin_info() {
}