Projet

Général

Profil

Paste
Télécharger (585 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / media / includes / media_views_plugin_display_media_browser.inc @ 87dbc3bf

1
<?php
2
/**
3
 * @file
4
 * Contains the media browser tab display plugin.
5
 */
6

    
7
/**
8
 * Display plugin to provide a view as a tab in the media browser.
9
 *
10
 * This is currently just a stub--there's nothing special we need to set up for
11
 * rendering a view as a tab in the media browser. It would be possible to
12
 * provide a special method that returns the plugin info for
13
 * media_media_browser_plugin_info() and the render array for
14
 * media_media_browser_plugin_view().
15
 *
16
 * @ingroup views_display_plugins
17
 */
18
class media_views_plugin_display_media_browser extends views_plugin_display {
19
}