Projet

Général

Profil

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

root / drupal7 / sites / all / modules / media / media-views-view-media-browser.tpl.php @ e4215af7

1
<?php
2

    
3
/**
4
 * @file media-views-view-media-browser.tpl.php
5
 * View template to display a grid of media previews in the media browser.
6
 */
7

    
8
/**
9
 * @see views-view-list.tpl.php
10
 * @see template_preprocess_media_views_view_media_browser()
11
 * @ingroup views_templates
12
 */
13
?>
14

    
15
<?php print $wrapper_prefix; ?>
16
  <div class="clearfix">
17
    <?php print $list_type_prefix; ?>
18
      <?php foreach ($rows as $id => $row): ?>
19
        <li id="media-item-<?php print $row->fid; ?>" class="<?php print $classes_array[$id]; ?>" tabindex="0" role="<?php print $aria_role; ?>" aria-checked="false">
20
          <?php print $row->preview; ?>
21
        </li>
22
      <?php endforeach; ?>
23
    <?php print $list_type_suffix; ?>
24
    <div id="status"></div>
25
  </div>
26
<?php print $wrapper_suffix; ?>