RemoteStreamWrapperMediaBrowser.inc in Remote Stream Wrapper 7
Definition of RemoteStreamWrapperMediaBrowser.
File
RemoteStreamWrapperMediaBrowser.incView source
<?php
/**
* @file
* Definition of RemoteStreamWrapperMediaBrowser.
*/
// If the Media Browser plugin class does not exist, prevent the rest of this
// file from being loaded.
if (!class_exists('MediaBrowserPlugin')) {
return;
}
/**
* Media browser plugin for remote files.
*/
class RemoteStreamWrapperMediaBrowser extends MediaBrowserPlugin {
/**
* Implements MediaBrowserPluginInterface::access().
*/
public function access($account = NULL) {
return user_access('administer files', $account) || user_access('add media from remote urls', $account);
}
/**
* Implements MediaBrowserPlugin::view().
*/
public function view() {
$build['form'] = drupal_get_form('remote_stream_wrapper_file_add_form', $this->params);
return $build;
}
}
Classes
Name | Description |
---|---|
RemoteStreamWrapperMediaBrowser | Media browser plugin for remote files. |