Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Contains the media browser tab display plugin.
6
 */
7

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