system/modules/sg-elements/templates/forms/form_textfield.html5 line 20

Open in your IDE?
  1. <?php $this->extend('form_row'); ?>
  2. <?php $this->block('label'); ?>
  3.   <?php if ($this->label): ?>
  4.     <label for="ctrl_<?php echo $this->id?>"<?php if ($this->class): ?> class="<?php echo $this->class?>"<?php endif; ?>>
  5.       <?php if ($this->mandatory): ?>
  6.         <span class="invisible"><?php echo $this->mandatoryField?></span> <?php echo $this->label?><span class="mandatory">*</span>
  7.       <?php else: ?>
  8.         <?php echo $this->label?>
  9.       <?php endif; ?>
  10.     </label>
  11.   <?php endif; ?>
  12. <?php $this->endblock(); ?>
  13. <?php $this->block('field'); ?>
  14.   <?php if ($this->hasErrors()): ?>
  15.     <p class="error"><?php echo $this->getErrorAsString(); ?></p>
  16.   <?php endif; ?>
  17.   <input type="<?php echo $this->type?>" name="<?php echo $this->name?>" id="ctrl_<?php echo $this->id?>" class="form-control text<?php if ($this->hideInput) echo ' password'?><?php if ($this->class) echo ' ' $this->class?>" value="<?php echo specialchars($this->value); ?>"<?php echo $this->getAttributes(); ?>>
  18.   <?php if ($this->addSubmit): ?>
  19.     <input type="submit" id="ctrl_<?php echo $this->id?>_submit" class="form-control submit" value="<?php echo $this->slabel?>">
  20.   <?php endif; ?>
  21. <?php $this->endblock(); ?>