Full ELMS Learning Network documentation
media-views-view-media-browser.tpl.php
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).- cis7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- cle7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- ecd7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- elmsmedia7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- harmony7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- icor7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- meedjum_blog7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
- mooc7 sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.php
media-views-view-media-browser.tpl.php View template to display a grid of media previews in the media browser.
See also
template_preprocess_media_views_view_media_browser()
1 string reference to the theme hook from media-views-view-media-browser.tpl.php
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- media_views_plugins in sites/
all/ modules/ ulmus/ media/ media.views.inc - Implements hook_views_plugins().
File
sites/all/modules/ulmus/media/media-views-view-media-browser.tpl.phpView source
- <?php
- /**
- * @file media-views-view-media-browser.tpl.php
- * View template to display a grid of media previews in the media browser.
- *
- * @see views-view-list.tpl.php
- * @see template_preprocess_media_views_view_media_browser()
- * @ingroup views_templates
- */
- ?>
-
- <?php print $wrapper_prefix; ?>
- <div class="clearfix">
- <?php print $list_type_prefix; ?>
- <?php foreach ($rows as $id => $row): ?>
- <li id="media-item-<?php print $row->fid; ?>" class="<?php print $classes_array[$id]; ?>">
- <?php print $row->preview; ?>
- </li>
- <?php endforeach; ?>
- <?php print $list_type_suffix; ?>
- <div id="status"></div>
- </div>
- <?php print $wrapper_suffix; ?>
-