123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- ?>
- <?php foreach ($fields as $id => $field): ?>
- <?php if (!empty($field->separator)): ?>
- <?php print $field->separator; ?>
- <?php endif; ?>
- <?php print $field->wrapper_prefix; ?>
- <?php print $field->label_html; ?>
- <?php print $field->content; ?>
- <?php print $field->wrapper_suffix; ?>
- <?php endforeach; ?>
|