You are here

14 field.tpl.php

admin 的头像
Submitted by admin on 星期五, 2015-09-18 06:39

默认的模板文件位于modules\field\theme下面:

<div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>

  <?php if (!$label_hidden): ?>

    <div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </div>

  <?php endif; ?>

  <div class="field-items"<?php print $content_attributes; ?>>

    <?php foreach ($items as $delta => $item): ?>

      <div class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>><?php print render($item); ?></div>

    <?php endforeach; ?>

  </div>

</div>


Drupal版本: