MediaBrowserPluginInterface.inc in D7 Media 7.3
Same filename and directory in other branches
Definition of MediaBrowserPluginInterface.
File
includes/MediaBrowserPluginInterface.incView source
<?php
/**
* @file
* Definition of MediaBrowserPluginInterface.
*/
/**
* Defines a Media browser plugin.
*
* Extends the MediaBrowserPluginInterface with methods expected by all
* Media browser classes.
*/
interface MediaBrowserPluginInterface {
/**
* Set up the plugin class.
*
* @param array $info
* An array of plugin info from hook_media_browser_plugin_info()
* implementations.
* @param array $params
* An array of parameters which came in is $_GET['params']. The expected
* parameters are still being defined.
* - 'types': array of media types to support
* - 'multiselect': boolean; TRUE enables multiselect.
*/
public function __construct($info, $params);
/**
* Check if a user can access this plugin.
*
* @param object $account
* An optional user account object from user_load(). Defaults to the current
* global user.
*
* @return bool
* TRUE if the user can access this plugin, or FALSE otherwise.
*/
public function access($account = NULL);
}
Interfaces
Name | Description |
---|---|
MediaBrowserPluginInterface | Defines a Media browser plugin. |