Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views_slideshow / theme / views-slideshow-pager-field-field.tpl.php @ 99781f3b

1
<?php
2

    
3
/**
4
 * @file
5
 * Views Slideshow: Template for pager field - field.
6
 *
7
 * - $view: The view in use.
8
 * - $css_id: A field specific css identifier.
9
 * - $field: The field machine name.
10
 * - $field_item: The field being rendered.
11
 * - $field_rendered: The pre-rendered field.
12
 *
13
 * @ingroup views_templates
14
 */
15
?>
16
<div class="views-field-<?php print $css_id; ?>">
17
  <?php if (is_object($field_item) && $field_item->label()) { ?>
18
    <label class="view-label-<?php print $css_id; ?>">
19
      <?php print $field_item->label(); ?>:
20
    </label>
21
  <?php } ?>
22
  <div class="views-content-<?php print $css_id; ?>">
23
    <?php print $field_rendered; ?>
24
  </div>
25
</div>