ORIENT/modules/backend/widgets/form/partials/_field.htm

30 lines
876 B
HTML
Raw Normal View History

<?php if (!$field->hidden): ?>
2014-05-14 13:24:20 +00:00
<?php if (!$this->showFieldLabels($field)): ?>
2014-05-14 13:24:20 +00:00
<?= $this->renderFieldElement($field) ?>
2014-05-14 13:24:20 +00:00
<?php else: ?>
<?php
$fieldComment = $field->commentHtml ? trans($field->comment) : e(trans($field->comment));
?>
2014-05-14 13:24:20 +00:00
<?php if ($field->label): ?>
<label for="<?= $field->getId() ?>">
<?= e(trans($field->label)) ?>
</label>
<?php endif ?>
<?php if ($field->comment && $field->commentPosition == 'above'): ?>
<p class="help-block before-field"><?= $fieldComment ?></p>
<?php endif ?>
<?= $this->renderFieldElement($field) ?>
2014-05-14 13:24:20 +00:00
<?php if ($field->comment && $field->commentPosition == 'below'): ?>
<p class="help-block"><?= $fieldComment ?></p>
<?php endif ?>
2014-05-14 13:24:20 +00:00
<?php endif ?>
<?php endif ?>